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

溫馨提示×

如何在Java中使用URL進行文件下載

小樊
95
2024-09-14 11:20:44
欄目: 編程語言

在Java中,您可以使用java.net.URLjava.io包中的類來下載文件

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

public class FileDownload {
    public static void main(String[] args) {
        String fileURL = "https://example.com/file-to-download.txt"; // 文件下載鏈接
        String savePath = "downloaded-file.txt"; // 保存到本地的文件名

        try {
            downloadFile(fileURL, savePath);
        } catch (IOException e) {
            System.out.println("Error downloading the file: " + e.getMessage());
        }
    }

    private static void downloadFile(String fileURL, String savePath) throws IOException {
        URL url = new URL(fileURL);
        BufferedInputStream in = new BufferedInputStream(url.openStream());
        FileOutputStream fos = new FileOutputStream(savePath);

        byte[] dataBuffer = new byte[1024];
        int bytesRead;
        while ((bytesRead = in.read(dataBuffer, 0, 1024)) != -1) {
            fos.write(dataBuffer, 0, bytesRead);
        }

        // 關閉流
        fos.close();
        in.close();

        System.out.println("File downloaded successfully!");
    }
}

這個示例代碼定義了一個downloadFile方法,該方法接受文件的URL和要將其保存到本地的路徑。然后,它使用BufferedInputStream從URL讀取數據并將其寫入FileOutputStream。最后,關閉兩個流以釋放資源。

請注意,此示例不處理HTTP錯誤,如重定向或404錯誤。為了處理這些情況,您需要使用更高級的HTTP客戶端庫,如Apache HttpClient或OkHttp。

0
炎陵县| 日照市| 安平县| 永年县| 上饶市| 崇州市| 靖边县| 隆昌县| 翼城县| 梁平县| 巍山| 建始县| 阳曲县| 岳普湖县| 扬州市| 玉门市| 行唐县| 星子县| 德保县| 湘西| 历史| 正镶白旗| 丽水市| 宁津县| 含山县| 宁国市| 新巴尔虎右旗| 兴业县| 巨野县| 盖州市| 马鞍山市| 乾安县| 洛扎县| 桐城市| 临漳县| 遂宁市| 固镇县| 武安市| 安远县| 麦盖提县| 商城县|