在Java中連接FTP并下載文件,可以使用Apache Commons Net庫。以下是一個簡單的示例:
import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient;
import java.io.FileOutputStream;
import java.io.IOException;
public class FTPDownloader {
public static void main(String[] args) {
String server = "ftp.example.com";
String username = "username";
String password = "password";
String remoteFile = "/path/to/remote/file.txt";
String localFile = "local_file.txt";
FTPClient ftpClient = new FTPClient();
try {
ftpClient.connect(server);
ftpClient.login(username, password);
ftpClient.enterLocalPassiveMode();
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
FileOutputStream outputStream = new FileOutputStream(localFile);
boolean success = ftpClient.retrieveFile(remoteFile, outputStream);
outputStream.close();
if (success) {
System.out.println("File downloaded successfully!");
} else {
System.out.println("Failed to download file!");
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (ftpClient.isConnected()) {
ftpClient.logout();
ftpClient.disconnect();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
在這個示例中,我們首先創建一個FTPClient對象,并連接到指定的FTP服務器。然后使用login()方法登錄到FTP服務器,設置傳輸模式為二進制文件類型,然后使用retrieveFile()方法下載文件到本地文件中。最后,關閉FTP連接并輸出下載結果。
請注意,你需要確保在項目中包含Apache Commons Net庫的依賴。