java多线程下载文件原理解析

发布时间:2020-08-27 03:39:34 作者:ITzhongzi
来源:脚本之家 阅读:171

原理解析:利用RandomAccessFile在本地创建一个随机访问文件,文件大小和服务器要下载的文件大小相同。根据线程的数量(假设有三个线程),服务器的文件三等分,并把我们在本地创建的文件同样三等分,每个线程下载自己负责的部分,到相应的位置即可。

示例图:

java多线程下载文件原理解析

示例demo

import java.io.InputStream;
import java.io.RandomAccessFile;
import java.net.HttpURLConnection;
import java.net.URL;

public class MutilDownload {
  private static String path = "http://192.168.80.85:8080/test.doc";
  private static final int threadCount = 3;

  public static void main(String[] args) {
    try {
      URL url = new URL(path);
      HttpURLConnection conn = (HttpURLConnection) url.openConnection();
      conn.setRequestMethod("GET");
      conn.setConnectTimeout(5000);
      int responseCode = conn.getResponseCode();
      if (responseCode == 200) {
        int contentLength = conn.getContentLength();
        System.out.println("length" + contentLength);

        RandomAccessFile rafAccessFile = new RandomAccessFile("test.doc", "rw");
        rafAccessFile.setLength(contentLength);

        int blockSize = contentLength / threadCount;
        for (int i = 0; i < threadCount; i++) {
          int startIndex = i * blockSize; //每个现成下载的开始位置
          int endIndex = (i + 1) * blockSize - 1;// 每个线程的结束位置
          if (i == threadCount - 1) {
            //最后一个线程
            endIndex = contentLength - 1;
          }

          new DownloadThread(startIndex, endIndex, i).start();
        }

      }
    } catch (Exception e) {

    }
  }

  private static class DownloadThread extends Thread {
    private int startIndex;
    private int endIndex;
    private int threadId;

    public DownloadThread(int startIndex, int endIndex, int threadId) {
      this.startIndex = startIndex;
      this.endIndex = endIndex;
      this.threadId = threadId;
    }

    @Override
    public void run() {
      try {
        URL url = new URL(path);
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        conn.setRequestMethod("GET");
        conn.setConnectTimeout(5000);
        conn.setRequestProperty("Range", "bytes=" + startIndex + "-" + endIndex); //固定写法,请求部分资源
        int responseCode = conn.getResponseCode(); // 206表示请求部分资源
        if (responseCode == 206) {
          RandomAccessFile rafAccessFile = new RandomAccessFile("test.doc", "rw");
          rafAccessFile.seek(startIndex);
          InputStream is = conn.getInputStream();
          int len = -1;
          byte[] buffer = new byte[1024];
          while ((len = is.read(buffer)) != -1) {
            rafAccessFile.write(buffer, 0, len);
          }
          rafAccessFile.close();

          System.out.println("线程" + threadId + "下载完成");
        }
      } catch (Exception e) {

      }
    }
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。

推荐阅读:
  1. myloader原理解析
  2. Java多线程 ReentrantReadWriteLock原理及实例详解

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

java 多线程 下载文件

上一篇:在SpringBoot中使用JWT的实现方法

下一篇:Java编程通过list接口实现数据的增删改查代码示例

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》