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

溫馨提示×

java下載文件如何實現進度條顯示

小樊
334
2024-07-02 19:09:13
欄目: 編程語言

要在Java中實現下載文件并顯示下載進度條,可以使用Java的URLConnection類來下載文件并監聽下載進度。以下是一個簡單的示例代碼:

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

public class FileDownloader {

    public static void main(String[] args) {
        String fileUrl = "http://example.com/file.txt";
        String savePath = "file.txt";
        
        try {
            URL url = new URL(fileUrl);
            URLConnection connection = url.openConnection();
            int fileSize = connection.getContentLength();
            
            InputStream inputStream = connection.getInputStream();
            FileOutputStream outputStream = new FileOutputStream(savePath);
            
            byte[] buffer = new byte[1024];
            int bytesRead;
            int totalBytesRead = 0;
            
            while ((bytesRead = inputStream.read(buffer)) != -1) {
                outputStream.write(buffer, 0, bytesRead);
                totalBytesRead += bytesRead;
                
                int percentage = (int) ((totalBytesRead / (float) fileSize) * 100);
                System.out.println("Downloaded " + percentage + "%");
            }
            
            inputStream.close();
            outputStream.close();
            
            System.out.println("File downloaded successfully!");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

在上面的代碼中,我們首先獲取文件的大小,然后創建一個輸入流來讀取文件內容,并創建一個輸出流來將文件內容寫入到本地文件。在讀取文件內容的過程中,我們計算已下載的文件大小占總文件大小的百分比,并將進度顯示在控制臺上。

請注意,這只是一個簡單的示例代碼,實際場景中可能需要更復雜的邏輯來處理異常、顯示進度條等。

0
安龙县| 错那县| 普格县| 古浪县| 肇东市| 南昌市| 黑河市| 兴和县| 土默特左旗| 沙河市| 马龙县| 南安市| 娱乐| 天等县| 宁晋县| 荥阳市| 区。| 唐山市| 浦东新区| 旺苍县| 玛纳斯县| 宁都县| 仙桃市| 兴业县| 德庆县| 天水市| 离岛区| 黄龙县| 广东省| 恩平市| 大洼县| 桃园市| 城口县| 汾西县| 新竹市| 永安市| 孟村| 云和县| 清水县| 建湖县| 泸水县|