文件名称:FTPClient的jar包
文件大小:1.98MB
文件格式:ZIP
更新时间:2014-05-18 16:08:57
FTPClient
FTPClient的jar包 FTPClient ftpClient = new FTPClient(); ftpClient.connect("ftp.foo.com"); ftpClient.login("user01", "pass1234"); ftpClient.download("C:\\Temp\\", "README.txt"); // Eventually other operations here ... ftpClient.disconnect();