gpt4 book ai didi

java - 检索文件列表时 it.sauronsoftware.ftp4j.FTPListParseException

转载 作者:行者123 更新时间:2023-12-01 18:12:54 25 4
gpt4 key购买 nike

我正在使用 ftp4j lib 通过 FTP 客户端从服务器上传下载文件。检索文件列表时出现错误。

我的代码是:

int port = 21;
String server = getResources().getString(R.string.FTPServer);
String username = getResources().getString(R.string.FTPUser);
String password = getResources().getString(R.string.FTPPwd);
String remotePath = "/";

FTPClient ftpClient = new FTPClient(); //ftp clientimiz
ftpClient.setType(FTPClient.TYPE_BINARY);
ftpClient.connect(server, port);
// ftpClient.setPassive(true);
ftpClient.login(username, password);
ftpClient.changeDirectory(remotePath);
FTPFile[] list = ftpClient.list();

错误详细信息如下图所示: error in file list

FileZilla 正确列出文件,请提出解决方案。

最佳答案

使用 ftp4j 是一个坏主意,我认为它不够成熟,而不是这个我替换了我的代码并开始使用 Apache Commons lib工作顺利。

关于java - 检索文件列表时 it.sauronsoftware.ftp4j.FTPListParseException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60432002/

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