gpt4 book ai didi

java - FTP 连接超时 421 : parser error

转载 作者:行者123 更新时间:2023-12-02 13:40:28 25 4
gpt4 key购买 nike

问题已被编辑。我试图列出 FTP 目录中的所有文件 - 尽管代码在正常的 Netbeans 项目中运行时工作正常,但在 Maven 项目中使用相同的代码时,会导致连接超时 421 .我怎样才能摆脱这个?

代码:

FTPClient ftpClient = new FTPClient();
ftpClient.connect(host, 21);
ftpClient.login(user, pass);
ftpClient.enterLocalPassiveMode();
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_UNIX);
ftpClient.configure(conf);
inputStream = FTPUtil.downloadSingleFile(ftpClient, filePath);
ftpClient.list(); // It works
ftpClient.listNames("/"); // It works
ftpClient.changeWorkingDirectory("/"); // It works
FTPFile[] files = ftpClient.listFiles("/");// It hangs and stops 421 connection timed out

FileZilla 日志是:-

    (000370)04-04-2013 16:04:32 - (not logged in) (127.0.0.1)> Connected, sending welcome message...
(000370)04-04-2013 16:04:32 - (not logged in) (127.0.0.1)> 220 ftp connection started...
(000370)04-04-2013 16:04:32 - (not logged in) (127.0.0.1)> USER raja
(000370)04-04-2013 16:04:32 - (not logged in) (127.0.0.1)> 331 Password required for raja
(000370)04-04-2013 16:04:32 - (not logged in) (127.0.0.1)> PASS ****
(000370)04-04-2013 16:04:32 - raja (127.0.0.1)> 230 Logged on
(000370)04-04-2013 16:04:32 - raja (127.0.0.1)> TYPE I
(000370)04-04-2013 16:04:32 - raja (127.0.0.1)> 200 Type set to I
(000370)04-04-2013 16:04:32 - raja (127.0.0.1)> PASV
(000370)04-04-2013 16:04:32 - raja (127.0.0.1)> 227 Entering Passive Mode (127,0,0,1,237,187)
(000370)04-04-2013 16:04:32 - raja (127.0.0.1)> SYST
(000370)04-04-2013 16:04:32 - raja (127.0.0.1)> 215 UNIX emulated by FileZilla
(000366)04-04-2013 16:04:33 - raja (127.0.0.1)> 421 Connection timed out.

客户端异常(exception)情况是:- enter image description here

最佳答案

apache-commons 1.4.1 在处理 FTP 服务器针对 SYST 命令返回 null 时的解析异常时存在严重问题。我尝试使用 3.2 版本,问题得到解决。

关于java - FTP 连接超时 421 : parser error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15809593/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com