Implement pause/resume in file downloading

后端 未结 5 1183
小鲜肉
小鲜肉 2020-12-02 08:12

I\'m trying to implement pause/resume in my download manager, I search the web and read several articles and change my code according them but resume seems not working corre

相关标签:
5条回答
  • 2020-12-02 08:31

    I would start debugging from this line:

    connection.setRequestProperty("Range", "bytes=" + downloadedSize + "-");
    

    As from the source code it is not possible to determine what downloadedSize is, it's hard to elaborate further, but the format should be bytes=from-to.

    Anyway, I would suggest you to use Apache HttpClient to avoid common pitfalls. Here is a question from someone who uses Apache HttpClient on a similar topic and some sample code is provided.

    0 讨论(0)
  • 2020-12-02 08:38

    It nay be that your server is taking to long to respond (more then the timeout limit) or this is also a fact that not all servers support pause - resume. It is also a point to ponder that weather the file is downloaded through Http, https, ftp or udp.

    Pausing" could just mean reading some of the stream and writing it to disk. When resuming you would have to use the headers to specify what is left to download.

    you may try something like :

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

    and please try to sync things.

    0 讨论(0)
  • 2020-12-02 08:47

    I think you just need to delete the input.skip(downloadedSize) line. Setting the HTTP header for byte range means the server will skip sending those bytes.

    Say you have a file that's 20 bytes long consisting of "aaaaabbbbbcccccffffffffd", and suppose the transfer is paused after downloading 5 bytes. Then the Range header will cause the server to send "bbbbbcccccffffffffd", you should read all of this content and append it to the file -- no skip(). But the skip() call in your code will skip "bbbbb" leaving "cccccffffffffd" to be downloaded. If you've already downloaded at least 50% of the file, then skip() will exhaust all of the input and nothing will happen.

    Also, all of the things in stringy05's post apply. You should make sure the server supports HTTP/1.1, make sure the Range header is supported for the resource (dynamically generated content may not support it), and make sure the resource isn't modified using etag and modification date.

    0 讨论(0)
  • 2020-12-02 08:52

    Okay problem fixed, here is my code for other users who wants to implement pause/resume:

            if (outputFileCache.exists())
            {
                connection.setAllowUserInteraction(true);
                connection.setRequestProperty("Range", "bytes=" + outputFileCache.length() + "-");
            }
    
            connection.setConnectTimeout(14000);
            connection.setReadTimeout(20000);
            connection.connect();
    
            if (connection.getResponseCode() / 100 != 2)
                throw new Exception("Invalid response code!");
            else
            {
                String connectionField = connection.getHeaderField("content-range");
    
                if (connectionField != null)
                {
                    String[] connectionRanges = connectionField.substring("bytes=".length()).split("-");
                    downloadedSize = Long.valueOf(connectionRanges[0]);
                }
    
                if (connectionField == null && outputFileCache.exists())
                    outputFileCache.delete();
    
                fileLength = connection.getContentLength() + downloadedSize;
                input = new BufferedInputStream(connection.getInputStream());
                output = new RandomAccessFile(outputFileCache, "rw");
                output.seek(downloadedSize);
    
                byte data[] = new byte[1024];
                int count = 0;
                int __progress = 0;
    
                while ((count = input.read(data, 0, 1024)) != -1 
                        && __progress != 100) 
                {
                    downloadedSize += count;
                    output.write(data, 0, count);
                    __progress = (int) ((downloadedSize * 100) / fileLength);
                }
    
                output.close();
                input.close();
           }
    
    0 讨论(0)
  • 2020-12-02 08:55

    It is impossible to tell what is wrong without some more information, however things to note:

    1. You must make a HTTP/1.1 request (it's hard to tell from your sample code)
    2. The server must support HTTP/1.1
    3. The server will tell you what it supports with an Accept-Ranges header in the response
    4. If-Range should be the etag the server gave you for the resource, not the last modified time

    You should check your range request with something simple to test the origin actually supports the Range request first (like curl or wget )

    0 讨论(0)
提交回复
热议问题