中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
沙雅县| 杭锦旗| 丰原市| 肃宁县| 汝阳县| 大足县| 且末县| 商水县| 临江市| 长春市| 大荔县| 剑阁县| 姜堰市| 聂荣县| 疏附县| 界首市| 凯里市| 荆州市| 湟中县| 建宁县| 阳东县| 绵竹市| 奎屯市| 桃园市| 林甸县| 沈丘县| 黎川县| 漳浦县| 山东省| 潞城市| 布尔津县| 青河县| 玉屏| 策勒县| 靖宇县| 城步| 蓝山县| 义马市| 凉城县| 灵台县| 会同县|