0

我有一个应用程序应该连接到 ftp 服务器并下载文件。几个月前,一切正常,但现在我想更改一些部分并在retrieveFile 中获取异常:

FTPClient ftp=ConnectToServer();
OutputStream stream = new FileOutputStream("TempServerLog.txt");
ftp.retrieveFile(FileName, stream);

这是堆栈跟踪:

java.net.SocketOutputStream.socketWrite0(Native Method)
java.net.SocketOutputStream.socketWrite(Unknown Source)
java.net.SocketOutputStream.write(Unknown Source)
sun.nio.cs.StreamEncoder.writeBytes(Unknown Source)
sun.nio.cs.StreamEncoder.implFlushBuffer(Unknown Source)
sun.nio.cs.StreamEncoder.implFlush(Unknown Source)
sun.nio.cs.StreamEncoder.flush(Unknown Source)
java.io.OutputStreamWriter.flush(Unknown Source)
java.io.BufferedWriter.flush(Unknown Source)
org.apache.commons.net.ftp.FTP.__send(FTP.java:501)
org.apache.commons.net.ftp.FTP.sendCommand(FTP.java:475)
org.apache.commons.net.ftp.FTP.sendCommand(FTP.java:552)
org.apache.commons.net.ftp.FTP.port(FTP.java:877)
org.apache.commons.net.ftp.FTPClient._openDataConnection_(FTPClient.java:709)
org.apache.commons.net.ftp.FTPClient._retrieveFile(FTPClient.java:1677)
org.apache.commons.net.ftp.FTPClient.retrieveFile(FTPClient.java:1669)
Util.FtpServer.DownloadConfigurationFile(FtpServer.java:83)
Main.main(Main.java:40)

sendCommand 中的命令是“PORT 127,0,0,1,192,226\r\n”。我在 Win7 机器上使用 FileZilla FTP 服务器。服务器运行良好,我可以使用具有相同用户名/密码的 FileZilla 客户端。

服务器日志告诉我:

(not logged in) (127.0.0.1)> Connected, sending welcome message...
(not logged in) (127.0.0.1)> 220-FileZilla Server version 0.9.37 beta
(not logged in) (127.0.0.1)> 220 Lokaler Test FTP Server - have fun!
(not logged in) (127.0.0.1)> USER peter
(not logged in) (127.0.0.1)> 331 Password required for peter
(not logged in) (127.0.0.1)> PASS 
peter (127.0.0.1)> 230 Logged on
peter (127.0.0.1)> disconnected.

所以我可以成功登录,但是在检索文件期间我断开了连接。

我仍然有一个旧版本的编译 jar,可以与我的本地服务器一起使用。我还尝试将 Apache-Commons-net 从 2.2(我在启动项目时使用)更新到当前版本 3.1,但错误仍然相同。

我还从我的项目的 git repo 中检查了一个旧版本,它现在有同样的问题。我为这个项目使用了额外的 Eclipse 安装,所以整个环境不应该被改变,但我仍然得到这个套接字错误。

4

1 回答 1

0

看起来,Windows 防火墙导致了这个问题。此外,它应该只对公共网络有效,当我连接到本地主机时,它会以某种方式引起问题。完全停用它后,我的程序开始工作。

于 2012-08-01T09:48:01.833 回答