FTPClient的jar包FTPClientftpClient=newFTPClient();ftpClient.connect("ftp.foo.com");ftpClient.login("user01","pass1234");ftpClient.download("C:\\Temp\\&quo;t;,"README.txt");//Eventuallyotheroperationshere...ftpClient.disconnect();