继续下载android

时间:2013-06-20 13:49:06

标签: android download

我试图找一些有助于恢复下载的方法,我找到了以下代码。我不明白这条线意味着什么...

if(ISSUE_DOWNLOAD_STATUS.intValue()==ECMConstant.ECM_DOWNLOADING) 

这里的ECMConstant是什么?

HttpURLConnection connection = (HttpURLConnection) url.openConnection();
if(ISSUE_DOWNLOAD_STATUS.intValue()==ECMConstant.ECM_DOWNLOADING){
    File file=new File(DESTINATION_PATH);
    if(file.exists()){
         downloaded = (int) file.length();
         connection.setRequestProperty("Range", "bytes="+(file.length())+"-");
    }
}else{
    connection.setRequestProperty("Range", "bytes=" + downloaded + "-");
}
connection.setDoInput(true);
connection.setDoOutput(true);
progressBar.setMax(connection.getContentLength());
 in = new BufferedInputStream(connection.getInputStream());
 fos=(downloaded==0)? new FileOutputStream(DESTINATION_PATH): new FileOutputStream(DESTINATION_PATH,true);
 bout = new BufferedOutputStream(fos, 1024);
byte[] data = new byte[1024];
int x = 0;
while ((x = in.read(data, 0, 1024)) >= 0) {
    bout.write(data, 0, x);
     downloaded += x;
     progressBar.setProgress(downloaded);
}

感谢。

1 个答案:

答案 0 :(得分:0)

ECMConstant可以是任何东西......如果你没有ECMConstant来自的完整代码或库,那就无法知道是什么了。

如果您对如何恢复下载有疑问,您需要做的就是处理您的标题,请求属性或服务器恢复它所需的内容,如下所示:

Map<String, String> headers = new HashMap<String, String>();

            if (isResuming) {

                File fileToResume = new File(filePath);

                if (fileToResume.exists()) {

                    headers.put("Range", "bytes=" + fileToResume.length() + "-");
                }
            }

其中isResuming是你继续下载的标志。