我正在为 ftp 客户端使用 ftp4j jar 我使用了 HTTP 隧道连接器,因为我的 FTP 服务器(开放 VMS 服务器)位于 HTTP 代理后面。PWD、NOOP、CWD 等基本命令工作正常,但如果我尝试列出和 NLIST 目录或存储文件,那么一段时间内什么都不会发生,我会得到 SocketTimeOutException。
下面是我的代码
HTTPTunnelConnector httpTunnelConnector = new HTTPTunnelConnector("**********", 80);
httpTunnelConnector.setConnectionTimeout(100);
FTPCommunicationListener ftpCommunicationListener = new FTPCommunicationListener()
{
@Override
public void sent(String command)
{
System.out.println("SENT :: "+command);
}
@Override
public void received(String response)
{
System.out.println("RECEIVED :: "+response);
}
};
FTPClient ftpClient = new FTPClient();
ftpClient.addCommunicationListener(ftpCommunicationListener);
ftpClient.setConnector(httpTunnelConnector);
System.out.println("Connecting to FTP server ... ");
String[] connectResponse = ftpClient.connect("*********", 21);
for (String string : connectResponse) {
System.out.println(string);
}
System.out.println("logging to FTP server ...");
ftpClient.login("ftpsee", "seeftp");
System.out.println("Authenticated by FTP server :: "+ftpClient.isAuthenticated());
ftpClient.setPassive(true);
File file = new File(argument);
ftpClient.upload(file);
而如果我将注释掉我将 HTTPTunnelConnector 添加到我的 FTP 客户端的部分,那么我的代码可以正常工作(但它会在内部使用 FTPTunnelConnector)
下面是我的错误消息 java.net.SocketTimeoutException: Read timed out