0

我有以下方法,我正在尝试更新进度条以了解下载的进度:

private void wget(java.net.URL url, String destination) throws MalformedURLException, IOException {
    java.net.URLConnection conn = url.openConnection();
    java.io.InputStream in = conn.getInputStream();

    File dstfile = new File(destination);
    OutputStream out = new FileOutputStream(dstfile);


    byte[] buffer = new byte[512];
    int length;
    int readBytes = 0;
    while ((length = in.read(buffer)) > 0) {
        out.write(buffer, 0, length);

        // Get progress
        int contentLength = conn.getContentLength();
        if (contentLength != -1) {

            //System.out.println((length / contentLength) * 100); ??
            UpdateForm.progressBar.setValue(2);
        } else {

        }            
    }

    in.close();
    out.close();
}

但是我似乎无法弄清楚如何计算已经走了多少 %..

有任何想法吗?

4

0 回答 0