登录 注册
当前位置:主页 > 资源下载 > 10 > ftp.jar ftp jar包下载

ftp.jar ftp jar包下载

  • 更新:2024-06-24 08:41:56
  • 大小:35KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Mail服务器 - 服务器应用
  • 格式:JAR

资源介绍

FTPClient fc = new FTPClient(remoteHost); fc.login(user, password); fc.chdir(remoteOutPath); String[] fileNames = fc.dir(); if (fileNames != null || fileNames.length != 0) { for (int i = 0; i < fileNames.length; i++) { System.out.println(fileNames[i])); //得到ftp文件夹下的文件名 } }