我org.apache.commons.net.ftp.FTPClient
在我的一个应用程序中使用 FTP 服务器。我能够connect
,login
和. 但是,当我尝试访问文件时,它不会返回该目录中的文件列表,我确定那里有文件。我正在使用该方法,它返回一个空数组。pwd
cwd
list
FTPFile[] listFiles()
FTPFile
请在我正在尝试的代码片段下面找到:
String hostname = properties.getProperty("FTP_SERVER");
String user = properties.getProperty("FTP_USER");
String passwd = properties.getProperty("FTP_PASSWD");
FTPClient client = new FTPClient();
client.connect(hostname);
client.login(user, passwd);
String reply = client.getStatus();
System.out.println(reply);
client.enterRemotePassiveMode();
client.changeWorkingDirectory("/uploads");
FTPFile[] files = client.listFiles();
System.out.println(files.length);
for (FTPFile file : files) {
System.out.println(file.getName());
}
String[] fileNames = client.listNames();
if (fileNames != null) {
for (String file : fileNames) {
System.out.println(file);
}
}
client.disconnect();