Apache Commons Net FTPClient和listFiles()

时间:2010-04-26 11:20:30

标签: java apache-commons ftp-client

有人能解释一下我的代码有什么问题吗?我尝试了不同的主机,FTPClientConfigs,它可以通过firefox / filezilla正确访问...问题是我总是得到空文件列表,没有任何异常(files.length == 0)。我使用与Maven一起安装的commons-net-2.1.jar。

    FTPClientConfig config = new FTPClientConfig(FTPClientConfig.SYST_L8);

    FTPClient client = new FTPClient();
    client.configure(config);

    client.connect("c64.rulez.org");
    client.login("anonymous", "anonymous");
    client.enterRemotePassiveMode();

    FTPFile[] files = client.listFiles();
    Assert.assertTrue(files.length > 0);

3 个答案:

答案 0 :(得分:86)

发现它!

您希望在连接后 进入被动模式,但在登录之前 。 你的代码没有给我任何回报,但这对我有用:

import org.apache.commons.net.ftp.FTPClient;
import java.io.IOException;
import org.apache.commons.net.ftp.FTPFile;

public class BasicFTP {

    public static void main(String[] args) throws IOException {
        FTPClient client = new FTPClient();
        client.connect("c64.rulez.org");
        client.enterLocalPassiveMode();
        client.login("anonymous", "");
        FTPFile[] files = client.listFiles("/pub");
        for (FTPFile file : files) {
            System.out.println(file.getName());
        }
    }
}

给我这个输出:

c128
c64
c64.hu
incoming
plus4

答案 1 :(得分:7)

仅使用enterLocalPassiveMode()对我不起作用。

我使用了以下代码,但是有效。

    ftpsClient.execPBSZ(0);
    ftpsClient.execPROT("P");
    ftpsClient.type(FTP.BINARY_FILE_TYPE);

完整示例如下,

    FTPSClient ftpsClient = new FTPSClient();        

    ftpsClient.connect("Host", 21);

    ftpsClient.login("user", "pass");

    ftpsClient.enterLocalPassiveMode();

    ftpsClient.execPBSZ(0);
    ftpsClient.execPROT("P");
    ftpsClient.type(FTP.BINARY_FILE_TYPE);

    FTPFile[] files = ftpsClient.listFiles();

    for (FTPFile file : files) {
        System.out.println(file.getName());
    }

答案 2 :(得分:3)

通常匿名用户不需要密码,请尝试

client.login("anonymous", "");