0

我正在使用 ftp4j 库来实现我的 FTP 客户端,但是我尝试连接的服务器仅在活动模式下接受连接。

因此,当我尝试列出远程文件时,我得到:

ERROR : Error in Connecting to Remote Machine... Hence exitting...
it.sauronsoftware.ftp4j.FTPException [code=501, message= Server cannot accept argument.]
at     it.sauronsoftware.ftp4j.FTPClient.openActiveDataTransferChannel(FTPClient.java:3600)
at it.sauronsoftware.ftp4j.FTPClient.openDataTransferChannel(FTPClient.java:3551)
at it.sauronsoftware.ftp4j.FTPClient.listNames(FTPClient.java:2335)
at com.npap.network.TranferFileFtp4j.listRemoteFilesFtp1(TranferFileFtp4j.java:999)

这是代码:

...
//connect to server method - in active mode!
ftpClient = Ftp4jUtility.connect1(SERVER_MACHINE, PORT, SERVER_USERNAME, SERVER_PASSWORD);

try {
    ftpClient.changeDirectory(config.getFtpRemoteFolderReports());    
    log.info("Changed directory to: " + config.getFtpRemoteFolderReports());
} catch (FTPException | FTPIllegalReplyException | IOException | IllegalStateException e) {
    e.printStackTrace();
}

String[] filesList = ftpClient.listNames();
    for(String f: filesList) {
        log.info("fetched file: " + f);
        tmpAllRemoteFiles.add(f);
}

在活动模式下连接时有什么方法可以列出远程文件?

4

1 回答 1

1

是的,您可以.listNames()在活动模式下使用。

问题可能是服务器无法连接回您的客户端以打开数据连接。您必须在本地防火墙(如果有)上打开 FTP 数据连接范围的端口,并在 NAT 上路由传入连接(如果有)。

配置主动模式FTP比较麻烦,很少使用。

了解有关FTP 主动模式所需的网络配置的(我的)文章。

501 错误代码来自 FTP 服务器(可能是 IIS)。你会发现很多类似的问题,如果你用谷歌搜索"501 Server cannot accept argument"

你的代码没有问题。要么是网络配置问题,要么是服务器端问题。

于 2015-02-25T06:27:31.370 回答