我正在尝试使用apache-commons net FTP lib从FTP服务器执行get。如果目录中只有一个文件,则代码运行良好,但在第二次调用retrieveFileStream()时总是返回null。有什么想法吗?我已经编写了以下示例代码来演示我的问题。
public static void main(String[] args) throws Exception
{
String strLine;
FTPClient client = null;
try{
client = new FTPClient();
client.connect("localhost", 21);
client.enterLocalPassiveMode();
client.login("ftptester", "letmein");
client.changeWorkingDirectory("remote");
FTPFile[] ftpFiles = client.listFiles();
if (ftpFiles != null && ftpFiles.length > 0) {
for (FTPFile file : ftpFiles) {
if (!file.isFile()) {
continue;
}
InputStream fin = client.retrieveFileStream(filepath);
if (fin == null) {
System.out.println("could not retrieve file: " + filepath);
continue;
}
byte[] data = readBytes(fin); // helper method not shown, just processes the input stream
fin.close();
fin = null;
System.out.println("data: " + new String(data));
}
}
}
finally {
... // cleanup code
}
}发布于 2010-12-16 02:23:10
多!缺少的魔法是:
completePendingCommand()https://stackoverflow.com/questions/4452987
复制相似问题