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

溫馨提示×

java怎么通過url下載文件

小億
181
2024-02-04 15:44:52
欄目: 編程語言

在Java中,可以使用java.net.URL類來下載文件。下面是一個簡單的示例代碼:

import java.io.BufferedInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URL;

public class FileDownloader {
    public static void downloadFile(String fileUrl, String savePath) throws IOException {
        URL url = new URL(fileUrl);
        BufferedInputStream inputStream = new BufferedInputStream(url.openStream());
        FileOutputStream outputStream = new FileOutputStream(savePath);

        byte[] buffer = new byte[1024];
        int bytesRead;
        while ((bytesRead = inputStream.read(buffer, 0, 1024)) != -1) {
            outputStream.write(buffer, 0, bytesRead);
        }

        outputStream.close();
        inputStream.close();
    }

    public static void main(String[] args) {
        String fileUrl = "https://example.com/file.txt";
        String savePath = "/path/to/save/file.txt";

        try {
            downloadFile(fileUrl, savePath);
            System.out.println("文件下載完成");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

在上面的示例代碼中,downloadFile方法接受文件的URL和保存的路徑作為參數,通過URL類打開輸入流并使用BufferedInputStream進行緩沖讀取,然后使用FileOutputStream寫入到指定的文件中。最后,關閉輸入流和輸出流。

main方法中,你可以替換fileUrlsavePath為你要下載的文件的URL和保存的路徑。

0
客服| 揭东县| 陆河县| 昌宁县| 股票| 阳谷县| 吉林省| 波密县| 红桥区| 尉氏县| 东宁县| 格尔木市| 小金县| 本溪| 黄石市| 扬中市| 洪洞县| 苍南县| 酒泉市| 新宾| 承德县| 孟村| 怀来县| 泰顺县| 通州区| 新宾| 南陵县| 香河县| 加查县| 大英县| 施秉县| 崇明县| 正定县| 阳山县| 丹东市| 阜平县| 保靖县| 阿拉尔市| 昭平县| 白城市| 南川市|