91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
大宁县| 乳源| 海林市| 佛山市| 肇庆市| 郸城县| 玛多县| 商河县| 新巴尔虎右旗| 商城县| 深泽县| 灵寿县| 高安市| 河东区| 镇平县| 奈曼旗| 介休市| 荆州市| 苏州市| 皋兰县| 桦甸市| 平果县| 伊宁市| 甘南县| 屏东市| 巴彦县| 凉山| 新巴尔虎右旗| 浦江县| 苗栗县| 舞阳县| 西和县| 安宁市| 邹平县| 石柱| 镇安县| 东明县| 晋宁县| 洪泽县| 科尔| 普格县|