码迷,mamicode.com
首页 > 其他好文 > 详细

从ftp拷贝文件

时间:2015-10-09 18:35:05      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

public static File[] copyDir(String ftpIp, int ftpPort, String ftpUser, String ftpPass,
    String ftpPath, String tmpPath) throws Exception {
  
  FTPClient ftp = new FTPClient();
  try {
    ftp.connect(ftpIp, ftpPort);

    ftp.login(ftpUser, ftpPass);
    if (!FTPReply.isPositiveCompletion(ftp.getReplyCode())) {
      throw new Exception("用户名或密码不正确。");
    }

    FTPFile[] files = ftp.listFiles(ftpPath);
    if (files.length == 0 && ftp.getReplyString().indexOf("fail") > 0) {
      throw new Exception("目录不存在。");
    }

    File tmpDir = new File(tmpPath);
    if (!tmpDir.exists()){
      tmpDir.mkdirs();
    }
    for (FTPFile f : files) {
      System.out.println(f.getName());
      ftp.retrieveFile(ftpPath + "/" + f.getName(),
          new FileOutputStream(tmpDir.getAbsolutePath() + File.separator + f.getName()));
    }

    ftp.logout();

    return tmpDir.listFiles();
    
  } finally {
    if (ftp.isConnected()) {
      try {
        ftp.disconnect();
      } catch (Exception e) {
      }
    }
  }

}


从ftp拷贝文件

标签:

原文地址:http://my.oschina.net/h2do/blog/514938

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!