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

溫馨提示×

java怎么實現文件下載功能

小億
156
2024-04-08 09:56:39
欄目: 編程語言

在Java中可以通過使用URLConnection類來實現文件下載功能。以下是一個簡單的示例代碼:

import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;

public class FileDownload {

    public static void main(String[] args) {
        String fileUrl = "http://example.com/file.zip";
        String outputFilePath = "file.zip";

        try {
            URL url = new URL(fileUrl);
            URLConnection conn = url.openConnection();
            InputStream inputStream = conn.getInputStream();

            FileOutputStream outputStream = new FileOutputStream(outputFilePath);

            byte[] buffer = new byte[4096];
            int bytesRead = -1;

            while ((bytesRead = inputStream.read(buffer)) != -1) {
                outputStream.write(buffer, 0, bytesRead);
            }

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

            System.out.println("File downloaded successfully!");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

在這個示例中,我們首先創建一個URL對象,然后通過調用openConnection()方法獲取URLConnection對象。接著我們獲取輸入流并將其寫入到一個文件輸出流中,最后關閉輸入輸出流。這樣就實現了文件下載功能。

0
新兴县| 龙泉市| 本溪| 阳城县| 准格尔旗| 徐水县| 武宣县| 和龙市| 集安市| 铜梁县| 冀州市| 和硕县| 明水县| 平塘县| 南通市| 老河口市| 靖远县| 闵行区| 遂川县| 加查县| 曲麻莱县| 敖汉旗| 特克斯县| 玛纳斯县| 瑞丽市| 醴陵市| 邹城市| 涪陵区| 陆良县| 淄博市| 武安市| 和硕县| 株洲市| 宁河县| 商洛市| 惠安县| 汉沽区| 新泰市| 兰坪| 南康市| 石柱|