android实现多线程下载文件(支持暂停、取消、断点续传)
多线程下载文件(支持暂停、取消、断点续传)
多线程同时下载文件即:在同一时间内通过多个线程对同一个请求地址发起多个请求,将需要下载的数据分割成多个部分,同时下载,每个线程只负责下载其中的一部分,最后将每一个线程下载的部分组装起来即可。
涉及的知识及问题
- 请求的数据如何分段
- 分段完成后如何下载和下载完成后如何组装到一起
- 暂停下载和继续下载的实现(wait()、notifyall()、synchronized的使用)
- 取消下载和断点续传的实现
一、请求的数据如何分段
首先通过httpurlconnection请求总文件大小,而后根据线程数计算每一个线程的下载量,在分配给每一个线程去下载
filelength = conn.getcontentlength(); //根据文件大小,先创建一个空文件 //“r“——以只读方式打开。调用结果对象的任何 write 方法都将导致抛出 ioexception。 //“rw“——打开以便读取和写入。如果该文件尚不存在,则尝试创建该文件。 //“rws“—— 打开以便读取和写入,对于 “rw”,还要求对文件的内容或元数据的每个更新都同步写入到底层存储设备。 //“rwd“——打开以便读取和写入,对于 “rw”,还要求对文件内容的每个更新都同步写入到底层存储设备。 randomaccessfile raf = new randomaccessfile(filepath, "rwd"); raf.setlength(filelength); raf.close(); //计算各个线程下载的数据段 int blocklength = filelength / threadcount;
二、分段完成后如何下载和下载完成后如何组装到一起
分段完成后给每一个线程的请求头设置range参数,他允许客户端只请求文件的一部分数据,每一个线程只请求下载相应范围内的数据,使用randomaccessfile(可随机读写的文件)写入到同一个文件里即可组装成目标文件range,是在 http/1.1里新增的一个 header field,它允许客户端实际上只请求文档的一部分(范围可以相互重叠)
range的使用形式:
属性 | 解释 |
---|---|
bytes=0-499 | 表示头500个字节 |
bytes=500-999 | 表示第二个500字节 |
bytes=-500 | 表示最后500个字节 |
bytes=500- | 表示500字节以后的范围 |
bytes=0-0,-1 | 第一个和最后一个字节 |
httpurlconnection中设置请求头
url url = new url(loadurl); httpurlconnection conn = (httpurlconnection) url.openconnection(); conn.setrequestmethod("get"); conn.setrequestproperty("range", "bytes=" + startposition + "-" + endposition); conn.setconnecttimeout(5000); //若请求头加上range这个参数,则返回状态码为206,而不是200 if (conn.getresponsecode() == 206) { inputstream is = conn.getinputstream(); randomaccessfile raf = new randomaccessfile(filepath, "rwd"); raf.seek(startposition);//跳到指定位置开始写数据 }
三、暂停下载和继续下载的实现(wait()、notifyall()、synchronized的使用)
关于synchronized只需记住一下五点:
- 当两个并发线程访问同一个对象object中的这个synchronized(this)同步代码块时,一个时间内只能有一个线程得到执行。另一个线程必须等待当前线程执行完这个代码块以后才能执行该代码块。
- 然而,当一个线程访问object的一个synchronized(this)同步代码块时,另一个线程仍然可以访问该object中的非synchronized(this)同步代码块。
- 尤其关键的是,当一个线程访问object的一个synchronized(this)同步代码块时,其他线程对object中所有其它synchronized(this)同步代码块的访问将被阻塞。
- 第三个例子同样适用其它同步代码块。也就是说,当一个线程访问object的一个synchronized(this)同步代码块时,它就获得了这个object的对象锁。结果,其它线程对该object对象所有同步代码部分的访问都被暂时阻塞。
- 以上规则对其它对象锁同样适用.
protected void onpause() { if (mthreads != null) statedownload = download_pause; } protected void onstart() { if (mthreads != null) synchronized (download_pause) { statedownload = download_ing; download_pause.notifyall(); } }
对于wait()、notify()、notifyall()需要注意的是
- 调用任何对象的wait()方法时,都必须先获得该对象的锁,即调用的wait()方法必须得写在synchronized(obj){…}之内
- 当调用对象的wait()方法后,该线程若想继续执行,必须得再次获得该对象的锁才可以
- 如果a1,a2,a3线程都在obj.wait(),则b调用object.notify()只能唤醒a1,a2,a3中的一个(具体哪一个由jvm决定)
- 当b调用object.notify/notifyall的时候,b正持有object锁,因此,a1,a2,a3虽被唤醒,但是仍无法获得object锁直到b退出synchronized块,释放object锁后,a1,a2,a3中的一个/全部才有机会获得锁继续执行
synchronized (download_pause) { if (statedownload.equals(download_pause)) { download_pause.wait(); } }
四、取消下载和断点续传的实现
取消下载即取消每个线程的执行,不建议直接使用thread.stop()方法,安全的取消线程即run方法执行结束。只要控制住循环,就可以让run方法结束,也就是线程结束
while ((len = is.read(buffer)) != -1) { //是否继续下载 if (!isgoon) break; }
断点续传即其实和重新下载是一样的,不过文件的大小和每一个线程下载时的起始位置和结束位置都不是重新计算的。而是上次取消下载时,每一个线程保存的当前位置和结束位置,让每一个线程接着上次的地方继续下载即可
sharedpreferences sp = mcontext.getsharedpreferences(sp_name, context.mode_private); //获取上次取消下载的进度,若没有则返回0 currlength = sp.getint(curr_length, 0); for (int i = 0; i < threadcount; i++) { //开始位置,获取上次取消下载的进度,默认返回i*blocklength,即第i个线程开始下载的位置 int startposition = sp.getint(sp_name + (i + 1), i * blocklength); //结束位置,-1是为了防止上一个线程和下一个线程重复下载衔接处数据 int endposition = (i + 1) * blocklength - 1; //将最后一个线程结束位置扩大,防止文件下载不完全,大了不影响,小了文件失效 if ((i + 1) == threadcount) endposition = endposition * 2; mthreads[i] = new downthread(i + 1, startposition, endposition); mthreads[i].start(); }
网络获取和读写sd卡都需要添加相应权限
<uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.write_external_storage" />
下面贴上全部的代码,里面有详细的注释downloadfile.java
import android.content.context; import android.content.sharedpreferences; import android.os.handler; import android.os.message; import java.io.inputstream; import java.io.randomaccessfile; import java.net.httpurlconnection; import java.net.url; /** * created by tianzhao on 2017/2/21 09:25. * 多线程下载文件 */ public class downloadfile { private static final string sp_name = "download_file"; private static final string curr_length = "curr_length"; private static final int default_thread_count = 4;//默认下载线程数 //以下为线程状态 private static final string download_init = "1"; private static final string download_ing = "2"; private static final string download_pause = "3"; private context mcontext; private string loadurl;//网络获取的url private string filepath;//下载到本地的path private int threadcount = default_thread_count;//下载线程数 private int filelength;//文件总大小 //使用volatile防止多线程不安全 private volatile int currlength;//当前总共下载的大小 private volatile int runningthreadcount;//正在运行的线程数 private thread[] mthreads; private string statedownload = download_init;//当前线程状态 private downloadlistener mdownloadlistener; public void setondownloadlistener(downloadlistener mdownloadlistener) { this.mdownloadlistener = mdownloadlistener; } interface downloadlistener { //返回当前下载进度的百分比 void getprogress(int progress); void oncomplete(); void onfailure(); } public downloadfile(context mcontext, string loadurl, string filepath) { this(mcontext, loadurl, filepath, default_thread_count, null); } public downloadfile(context mcontext, string loadurl, string filepath, downloadlistener mdownloadlistener) { this(mcontext, loadurl, filepath, default_thread_count, mdownloadlistener); } public downloadfile(context mcontext, string loadurl, string filepath, int threadcount) { this(mcontext, loadurl, filepath, threadcount, null); } public downloadfile(context mcontext, string loadurl, string filepath, int threadcount, downloadlistener mdownloadlistener) { this.mcontext = mcontext; this.loadurl = loadurl; this.filepath = filepath; this.threadcount = threadcount; runningthreadcount = 0; this.mdownloadlistener = mdownloadlistener; } /** * 开始下载 */ protected void download() { //在线程中运行,防止anr new thread(new runnable() { @override public void run() { try { //初始化数据 if (mthreads == null) mthreads = new thread[threadcount]; //建立连接请求 url url = new url(loadurl); httpurlconnection conn = (httpurlconnection) url.openconnection(); conn.setconnecttimeout(5000); conn.setrequestmethod("get"); int code = conn.getresponsecode();//获取返回码 if (code == 200) {//请求成功,根据文件大小开始分多线程下载 filelength = conn.getcontentlength(); //根据文件大小,先创建一个空文件 //“r“——以只读方式打开。调用结果对象的任何 write 方法都将导致抛出 ioexception。 //“rw“——打开以便读取和写入。如果该文件尚不存在,则尝试创建该文件。 //“rws“—— 打开以便读取和写入,对于 “rw”,还要求对文件的内容或元数据的每个更新都同步写入到底层存储设备。 //“rwd“——打开以便读取和写入,对于 “rw”,还要求对文件内容的每个更新都同步写入到底层存储设备。 randomaccessfile raf = new randomaccessfile(filepath, "rwd"); raf.setlength(filelength); raf.close(); //计算各个线程下载的数据段 int blocklength = filelength / threadcount; sharedpreferences sp = mcontext.getsharedpreferences(sp_name, context.mode_private); //获取上次取消下载的进度,若没有则返回0 currlength = sp.getint(curr_length, 0); for (int i = 0; i < threadcount; i++) { //开始位置,获取上次取消下载的进度,默认返回i*blocklength,即第i个线程开始下载的位置 int startposition = sp.getint(sp_name + (i + 1), i * blocklength); //结束位置,-1是为了防止上一个线程和下一个线程重复下载衔接处数据 int endposition = (i + 1) * blocklength - 1; //将最后一个线程结束位置扩大,防止文件下载不完全,大了不影响,小了文件失效 if ((i + 1) == threadcount) endposition = endposition * 2; mthreads[i] = new downthread(i + 1, startposition, endposition); mthreads[i].start(); } } else { handler.sendemptymessage(failure); } } catch (exception e) { e.printstacktrace(); handler.sendemptymessage(failure); } } }).start(); } /** * 取消下载 */ protected void cancel() { if (mthreads != null) { //若线程处于等待状态,则while循环处于阻塞状态,无法跳出循环,必须先唤醒线程,才能执行取消任务 if (statedownload.equals(download_pause)) onstart(); for (thread dt : mthreads) { ((downthread) dt).cancel(); } } } /** * 暂停下载 */ protected void onpause() { if (mthreads != null) statedownload = download_pause; } /** * 继续下载 */ protected void onstart() { if (mthreads != null) synchronized (download_pause) { statedownload = download_ing; download_pause.notifyall(); } } protected void ondestroy() { if (mthreads != null) mthreads = null; } private class downthread extends thread { private boolean isgoon = true;//是否继续下载 private int threadid; private int startposition;//开始下载点 private int endposition;//结束下载点 private int currposition;//当前线程的下载进度 private downthread(int threadid, int startposition, int endposition) { this.threadid = threadid; this.startposition = startposition; currposition = startposition; this.endposition = endposition; runningthreadcount++; } @override public void run() { sharedpreferences sp = mcontext.getsharedpreferences(sp_name, context.mode_private); try { url url = new url(loadurl); httpurlconnection conn = (httpurlconnection) url.openconnection(); conn.setrequestmethod("get"); conn.setrequestproperty("range", "bytes=" + startposition + "-" + endposition); conn.setconnecttimeout(5000); //若请求头加上range这个参数,则返回状态码为206,而不是200 if (conn.getresponsecode() == 206) { inputstream is = conn.getinputstream(); randomaccessfile raf = new randomaccessfile(filepath, "rwd"); raf.seek(startposition);//跳到指定位置开始写数据 int len; byte[] buffer = new byte[1024]; while ((len = is.read(buffer)) != -1) { //是否继续下载 if (!isgoon) break; //回调当前进度 if (mdownloadlistener != null) { currlength += len; int progress = (int) ((float) currlength / (float) filelength * 100); handler.sendemptymessage(progress); } raf.write(buffer, 0, len); //写完后将当前指针后移,为取消下载时保存当前进度做准备 currposition += len; synchronized (download_pause) { if (statedownload.equals(download_pause)) { download_pause.wait(); } } } is.close(); raf.close(); //线程计数器-1 runningthreadcount--; //若取消下载,则直接返回 if (!isgoon) { //此处采用sharedpreferences保存每个线程的当前进度,和三个线程的总下载进度 if (currposition < endposition) { sp.edit().putint(sp_name + threadid, currposition).apply(); sp.edit().putint(curr_length, currlength).apply(); } return; } if (runningthreadcount == 0) { sp.edit().clear().apply(); handler.sendemptymessage(success); handler.sendemptymessage(100); mthreads = null; } } else { sp.edit().clear().apply(); handler.sendemptymessage(failure); } } catch (exception e) { sp.edit().clear().apply(); e.printstacktrace(); handler.sendemptymessage(failure); } } public void cancel() { isgoon = false; } } private final int success = 0x00000101; private final int failure = 0x00000102; private handler handler = new handler() { @override public void handlemessage(message msg) { if (mdownloadlistener != null) { if (msg.what == success) { mdownloadlistener.oncomplete(); } else if (msg.what == failure) { mdownloadlistener.onfailure(); } else { mdownloadlistener.getprogress(msg.what); } } } }; }
在mainactivity中的使用
import android.os.bundle; import android.os.environment; import android.support.v7.app.appcompatactivity; import android.view.view; import android.widget.textview; import android.widget.toast; public class mainactivity extends appcompatactivity { downloadfile downloadfile; private string loadurl = "http://gdown.baidu.com/data/wisegame/d2fbbc8e64990454/wangyiyunyinle_87.apk"; private string filepath = environment.getexternalstoragedirectory()+"/"+"网易云音乐.apk"; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); final textview tvprogress = (textview) findviewbyid(r.id.tv_progress); downloadfile = new downloadfile(this,loadurl, filepath, 3); downloadfile.setondownloadlistener(new downloadfile.downloadlistener() { @override public void getprogress(int progress) { tvprogress.settext("当前进度 :"+progress+" %"); } @override public void oncomplete() { toast.maketext(mainactivity.this,"下载完成",toast.length_short).show(); } @override public void onfailure() { toast.maketext(mainactivity.this,"下载失败",toast.length_short).show(); } }); findviewbyid(r.id.bt).setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { downloadfile.download(); } }); findviewbyid(r.id.bt_pause).setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { downloadfile.onpause(); } }); findviewbyid(r.id.bt_start).setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { downloadfile.onstart(); } }); findviewbyid(r.id.bt_cancel).setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { downloadfile.cancel(); } }); } @override protected void ondestroy() { downloadfile.ondestroy(); super.ondestroy(); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。