亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java怎么連接ftp下載文件

小億
190
2024-04-16 19:02:16
欄目: 編程語言

在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庫的依賴。

0
江都市| 石河子市| 邻水| 宜春市| 铜山县| 琼结县| 淮北市| 荃湾区| 南汇区| 营山县| 鹿泉市| 上栗县| 镇远县| 托克逊县| 正蓝旗| 黑河市| 梁山县| 许昌市| 安阳市| 岗巴县| 巴南区| 保康县| 钦州市| 宜春市| 东港市| 噶尔县| 临朐县| 永顺县| 鄂尔多斯市| 彭泽县| 连山| 东阿县| 巴林左旗| 大英县| 阳泉市| 昭通市| 卓资县| 泗水县| 黔西县| 阿瓦提县| 通州市|