恢复 http 下载。文件已追加,但大小更大

发布于 2024-11-15 13:39:46 字数 862 浏览 4 评论 0原文

    URL url;

    url = new URL("http://download.thinkbroadband.com/5MB.zip");

      File fileThatExists = new File("/sdcard/testfile"); 

      URLConnection conexion = url.openConnection();
      conexion.setRequestProperty("Range", "bytes=" + fileThatExists.length() + "-");
    // Resume download.

    conexion.setRequestProperty("If-Range", "Mon, 02 Jun 2008 15:30:42 GMT"); 

    conexion.connect();
    InputStream input = new BufferedInputStream(url.openStream());
    OutputStream output = new FileOutputStream("/sdcard/testfile", true);

    byte data[] = new byte[1024];

    long total = 0;

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

        }

    }

我尝试恢复下载。但是如果我的文件是 5200kb,并且我在 100kb 后恢复下载,我得到的文件是 5300kb。这段代码有什么问题?

    URL url;

    url = new URL("http://download.thinkbroadband.com/5MB.zip");

      File fileThatExists = new File("/sdcard/testfile"); 

      URLConnection conexion = url.openConnection();
      conexion.setRequestProperty("Range", "bytes=" + fileThatExists.length() + "-");
    // Resume download.

    conexion.setRequestProperty("If-Range", "Mon, 02 Jun 2008 15:30:42 GMT"); 

    conexion.connect();
    InputStream input = new BufferedInputStream(url.openStream());
    OutputStream output = new FileOutputStream("/sdcard/testfile", true);

    byte data[] = new byte[1024];

    long total = 0;

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

        }

    }

I tried to resume download. But If my file is 5200kb, and I resume download after 100kb, I got file 5300kb. What's wrong with this code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文