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

溫馨提示×

利用Java實現文件下載進度條的方法

小樊
103
2024-10-10 01:50:41
欄目: 編程語言

在Java中,可以使用Swing庫中的JProgressBar組件來實現文件下載進度條

  1. 首先,確保已經導入了以下必要的庫:
import javax.swing.*;
import java.awt.*;
import java.io.BufferedInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
  1. 創建一個JFrame窗口,并在其中添加一個JProgressBar組件:
public class FileDownloader {
    public static void main(String[] args) {
        JFrame frame = new JFrame("File Downloader");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 200);

        JProgressBar progressBar = new JProgressBar();
        progressBar.setStringPainted(true);
        frame.getContentPane().add(progressBar, BorderLayout.CENTER);

        frame.setVisible(true);
    }
}
  1. 創建一個方法來下載文件,并在其中更新進度條:
public static void downloadFile(String fileURL, String savePath) {
    try {
        URL url = new URL(fileURL);
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
        connection.setRequestMethod("GET");
        connection.connect();

        int fileSize = connection.getContentLength();
        int bytesRead;
        byte[] data = new byte[1024];
        InputStream inputStream = new BufferedInputStream(url.openStream());
        FileOutputStream fileOutputStream = new FileOutputStream(savePath);

        progressBar.setMinimum(0);
        progressBar.setMaximum(fileSize);

        while ((bytesRead = inputStream.read(data, 0, 1024)) != -1) {
            fileOutputStream.write(data, 0, bytesRead);
            int progress = (int) (((double) bytesRead / fileSize) * 100);
            progressBar.setValue(progress);
        }

        fileOutputStream.close();
        inputStream.close();
        connection.disconnect();
    } catch (IOException e) {
        e.printStackTrace();
    }
}
  1. main方法中調用downloadFile方法來下載文件:
public static void main(String[] args) {
    // ... 創建JFrame窗口和JProgressBar組件

    String fileURL = "https://example.com/path/to/your/file.txt";
    String savePath = "D:/downloaded_file.txt";

    downloadFile(fileURL, savePath);
}

現在,當你運行這個程序時,它將下載指定的文件,并在JProgressBar組件上顯示下載進度。請注意,這個示例僅適用于HTTP和HTTPS協議的文件下載。如果你需要下載FTP協議的文件,你需要使用其他庫(如Apache Commons Net)來實現。

0
临安市| 连江县| 新民市| 防城港市| 额敏县| 太原市| 平谷区| 曲麻莱县| 泸定县| 上虞市| 湾仔区| 安福县| 石柱| 罗源县| 万州区| 车致| 松江区| 连山| 闸北区| 临高县| 黄浦区| 凤台县| 滁州市| 泰兴市| 大田县| 枞阳县| 安义县| 五峰| 大关县| 冕宁县| 德州市| 宁都县| 滦南县| 灌阳县| 永康市| 阜新市| 腾冲县| 岱山县| 彭州市| 富阳市| 弥渡县|