显示凌空文件下载的进度值

时间:2016-06-13 12:55:47

标签: android download android-volley

我需要以百分比显示文件下载的进度。

目前我正在使用 Volley 库。我使用InputStreamVolleyRequest类来发出下载请求,BufferedOutputStream来读取/写入文件。

如何以最有效的方式显示进度更新?

2 个答案:

答案 0 :(得分:1)

正如您所提到的,您使用的是InputStreamVolleyRequest,我希望您已经编写了以下代码或类似内容:

@Override
public void onResponse(byte[] response) {
    HashMap<String, Object> map = new HashMap<String, Object>();
    try {
        if (response!=null) {

            String content =request.responseHeaders.get("Content-Disposition")
                    .toString();
            StringTokenizer st = new StringTokenizer(content, "=");
            String[] arrTag = st.toArray();

            String filename = arrTag[1];
            filename = filename.replace(":", ".");
            Log.d("DEBUG::FILE NAME", filename);

            try{
                long lenghtOfFile = response.length;

                InputStream input = new ByteArrayInputStream(response);

                File path = Environment.getExternalStorageDirectory();
                File file = new File(path, filename);
                map.put("resume_path", file.toString());
                BufferedOutputStream output = new BufferedOutputStream(new FileOutputStream(file));
                byte data[] = new byte[1024];

                long total = 0;

                while ((count = input.read(data)) != -1) {
                    total += count;
                    output.write(data, 0, count);
                }

                output.flush();

                output.close();
                input.close();
            }catch(IOException e){
                e.printStackTrace();

            }
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}

如果您已经这样做了,那么放入进度条很容易。 获取ProgressDialog对象并初始化,如下所示:

progressDialog = new ProgressDialog(Activity Context here);
progressDialog.setTitle("Any Title here");
progressDialog.setMessage("Downloading in Progress...");
progressDialog.setProgressStyle(progressDialog.STYLE_HORIZONTAL);
progressDialog.setCancelable(false);
progressDialog.setMax(100);
progressDialog.setProgress(0);
progressDialog.show();

然后修改while循环,如下所示:

while ((count = input.read(data)) != -1) {
    total += count;
    output.write(data, 0, count);
    progress = (int)total*100/file_length;
    progressDialog.setProgress(progress);
}

试试这个并告诉我。

但是我也告诉你,Volley不适合大量下载。相反,我建议您使用DownloadManager或Apache的HttpClient甚至AsyncTask。它们更容易使用,可能更好用于此目的。

答案 1 :(得分:0)

我正在使用带有Httpclient的进度条,所以如果你想取得进展,那么我的建议是使用HTTP客户端,这样你就可以完全按照自己的意愿

这是链接: http://www.androidhive.info/2014/12/android-uploading-camera-image-video-to-server-with-progress-bar/

希望这会对你有所帮助!干杯!