java多线程实现文件下载功能
程序员文章站
2024-03-07 23:00:30
多线程下载文件的思路:
1.首先获取到文件的总大小
获取文件大小的方式是通过网络读取,getcontentlength()即可获取到文件的大小,使用randomac...
多线程下载文件的思路:
1.首先获取到文件的总大小
获取文件大小的方式是通过网络读取,getcontentlength()即可获取到文件的大小,使用randomaccessfile()支持随机访问
2.根据所准备的线程数据,计算每一个线程需要下载的文件的大小
上图显示下载400m的电影分4个线程下载,每一个线程分别下载各自数据段中的数据,第一个线程下载0-100m,第二个下载100m-200m之间的数据,依次类推。因此下载过程中需要记住的是的开始位置段和结束位置段,其实只需要开始位置就可以了,结束为止可以根据开始位置加上下载的大小来推断获取。
3.获取到大小数据以后,开始用线程循环读取每一个区间的数据
这个里面需要注意的是,要更新数据的写入位置seek(startindex),逐段填满,不然会出现覆盖以前的数据。
package com.ldw.multilthreaddownload; import java.io.file; import java.io.inputstream; import java.io.randomaccessfile; import java.net.httpurlconnection; import java.net.url; public class multidownload { static int threadcount = 3; //线程的个数 static string path = "http://192.168.0.102:8080/qq.exe"; //确定下载地址 public static void main(string[] args) { // todo auto-generated method stub //发送get请求,请求这个地址的资源 try { url url = new url(path); httpurlconnection conn = (httpurlconnection) url.openconnection(); conn.setrequestmethod("get"); conn.setconnecttimeout(5000); conn.setreadtimeout(5000); if(conn.getresponsecode() == 200){ //获取到请求资源文件的长度 int length = conn.getcontentlength(); file file = new file("qq.exe"); //创建随机存储文件 randomaccessfile raf = new randomaccessfile(file, "rwd"); //设置临时文件的大小 raf.setlength(length); //关闭raf raf.close(); //计算出每一个线程下载多少字节 int size = length / multidownload.threadcount; for(int i = 0; i < multidownload.threadcount; i ++){ //startindex,endindex分别代表线程的开始和结束位置 int startindex = i * size; int endindex = (i + 1) * size - 1; if(i == threadcount - 1){ //如果是最后一个线程,那么结束位置写死 endindex = length -1; } system.out.println("线程" + i + "的下载区间是" + startindex + "到" + endindex); new downloadthread(startindex, endindex, i).start(); //创建线程下载数据 } } } catch (exception e) { // todo auto-generated catch block e.printstacktrace(); } } } class downloadthread extends thread{ int startindex; int endindex; int threadid; public downloadthread(int startindex, int endindex, int threadid) { super(); this.startindex = startindex; this.endindex = endindex; this.threadid = threadid; } @override public void run(){ //使用http请求下载安装包文件 url url; try { url = new url(multidownload.path); httpurlconnection conn = (httpurlconnection) url.openconnection(); conn.setrequestmethod("get"); conn.setconnecttimeout(5000); conn.setreadtimeout(5000); //设置请求数据的区间 conn.setrequestproperty("range", "bytes=" + startindex + "-" + endindex); //请求部分数据的响应码是206 if(conn.getresponsecode() == 206){ //获取一部分数据来读取 inputstream is = conn.getinputstream(); byte[] b = new byte[1024]; int len = 0; int total = 0; //拿到临时文件的引用 file file = new file("qq.exe"); randomaccessfile raf = new randomaccessfile(file, "rwd"); //更新文件的写入位置,startindex raf.seek(startindex); while((len = is.read(b)) != -1 ){ //每次读取流里面的数据,同步吧数据写入临时文件 raf.write(b, 0, len); total += len; system.out.println("线程" + threadid + "下载了" + total); } system.out.println("线程" + threadid + "下载过程结束==========================="); raf.close(); } } catch (exception e) { // todo auto-generated catch block e.printstacktrace(); } }; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: yii2简单使用less代替css示例
下一篇: JVM加载一个类的过程