apache-commons ftp检索多个文件

时间:2010-12-15 17:30:21

标签: java ftp apache-commons-net

我正在尝试使用apache-commons net FTP lib从FTP服务器获取。如果目录中只有1个文件,代码工作正常,但是第二次调用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
    }
  }

1 个答案:

答案 0 :(得分:17)

卫生署!缺少魔法是:

completePendingCommand()
相关问题