繁体   English   中英

继续下载android

[英]Resume download android

我试图寻找一些有助于恢复下载的方法,但发现以下代码。 我不明白这条线是什么意思...

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);
}

谢谢。

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

如果您不确定如何继续下载,则需要做的就是处理Header,request属性或服务器需要恢复的内容,例如:

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是您是否继续下载的标志。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM