Android入門:多線程斷點(diǎn)下載詳細(xì)介紹
本案例在于實(shí)現(xiàn)文件的多線程斷點(diǎn)下載,即文件在下載一部分中斷后,可繼續(xù)接著已有進(jìn)度下載,并通過(guò)進(jìn)度條顯示進(jìn)度。也就是說(shuō)在文件開(kāi)始下載的同時(shí),自動(dòng)創(chuàng)建每個(gè)線程的下載進(jìn)度的本地文件,下載中斷后,重新進(jìn)入應(yīng)用點(diǎn)擊下載,程序檢查有沒(méi)有本地文件的存在,若存在,獲取本地文件中的下載進(jìn)度,繼續(xù)進(jìn)行下載。當(dāng)下載完成后,自動(dòng)刪除本地文件。
一、多線程斷點(diǎn)下載介紹
所謂的多線程斷點(diǎn)下載就是利用多線程下載,并且可被中斷,如果突然沒(méi)電了,重啟手機(jī)后可以繼續(xù)下載,而不需要重新下載;
利用的技術(shù)有:SQLite存儲(chǔ)各個(gè)線程的下載量,HTTP請(qǐng)求獲得下載數(shù)據(jù);
二、輔助類介紹
為了完成多線程斷點(diǎn)下載我們需要預(yù)先編寫一些輔助類:
(1)DBOpenHelper
(2)FileService:
-Map<Integer,Integer> getData(String path); 根據(jù)URL獲得各個(gè)線程的下載量
-save(String path, Map<Integer, Integer> map);存儲(chǔ)URL對(duì)應(yīng)的各個(gè)線程下載量,此函數(shù)為剛剛開(kāi)始時(shí)調(diào)用
-update(String path, Map<Integer, Integer> map);更新數(shù)據(jù)庫(kù)中URL對(duì)應(yīng)的各個(gè)線程的下載量;
-delete(String path);刪除URL對(duì)應(yīng)的數(shù)據(jù);
(3)FileDownloader:
-getFileSize();獲得下載文件的大小
-download(DownloadProgressListener listener);下載文件,并設(shè)置監(jiān)聽(tīng)器
(4)DownloadThread:此類在FileDownloader的download中執(zhí)行;
先將輔助類列出:
DBOpenHelper.Java
package service;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
public class DBOpenHelper extends SQLiteOpenHelper {
private static final String DBNAME = "download.db";
private static final int VERSION = 1;
public DBOpenHelper(Context context) {
super(context, DBNAME, null, VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE IF NOT EXISTS filedownlog (id integer primary key autoincrement, downpath varchar(100), threadid INTEGER, downlength INTEGER)");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("DROP TABLE IF EXISTS filedownlog");
onCreate(db);
}
}
FileService.java
package service;
import java.util.HashMap;
import java.util.Map;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
/**
* 業(yè)務(wù)bean
*
*/
public class FileService {
private DBOpenHelper openHelper;
public FileService(Context context) {
openHelper = new DBOpenHelper(context);
}
/**
* 獲取每條線程已經(jīng)下載的文件長(zhǎng)度
* @param path
* @return
*/
public Map<Integer, Integer> getData(String path){
SQLiteDatabase db = openHelper.getReadableDatabase();
Cursor cursor = db.rawQuery("select threadid, downlength from filedownlog where downpath=?", new String[]{path});
Map<Integer, Integer> data = new HashMap<Integer, Integer>();
while(cursor.moveToNext()){
data.put(cursor.getInt(0), cursor.getInt(1));
}
cursor.close();
db.close();
return data;
}
/**
* 保存每條線程已經(jīng)下載的文件長(zhǎng)度
* @param path
* @param map
*/
public void save(String path, Map<Integer, Integer> map){//int threadid, int position
SQLiteDatabase db = openHelper.getWritableDatabase();
db.beginTransaction();
try{
for(Map.Entry<Integer, Integer> entry : map.entrySet()){
db.execSQL("insert into filedownlog(downpath, threadid, downlength) values(?,?,?)",
new Object[]{path, entry.getKey(), entry.getValue()});
}
db.setTransactionSuccessful();
}finally{
db.endTransaction();
}
db.close();
}
/**
* 實(shí)時(shí)更新每條線程已經(jīng)下載的文件長(zhǎng)度
* @param path
* @param map
*/
public void update(String path, Map<Integer, Integer> map){
SQLiteDatabase db = openHelper.getWritableDatabase();
db.beginTransaction();
try{
for(Map.Entry<Integer, Integer> entry : map.entrySet()){
db.execSQL("update filedownlog set downlength=? where downpath=? and threadid=?",
new Object[]{entry.getValue(), path, entry.getKey()});
}
db.setTransactionSuccessful();
}finally{
db.endTransaction();
}
db.close();
}
/**
* 當(dāng)文件下載完成后,刪除對(duì)應(yīng)的下載記錄
* @param path
*/
public void delete(String path){
SQLiteDatabase db = openHelper.getWritableDatabase();
db.execSQL("delete from filedownlog where downpath=?", new Object[]{path});
db.close();
}
}
FileDownloader.java
package net.download;
import java.io.File;
import java.io.RandomAccessFile;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.ConcurrentHashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import service.FileService;
import android.content.Context;
import android.util.Log;
/**
* 文件下載器
* FileDownloader loader = new FileDownloader(context, "http://browse.babasport.com/ejb3/ActivePort.exe",
new File("D:\\androidsoft\\test"), 2);
loader.getFileSize();//得到文件總大小
try {
loader.download(new DownloadProgressListener(){
public void onDownloadSize(int size) {
print("已經(jīng)下載:"+ size);
}
});
} catch (Exception e) {
e.printStackTrace();
}
*/
public class FileDownloader {
private static final String TAG = "FileDownloader";
private Context context;
private FileService fileService;
/* 已下載文件長(zhǎng)度 */
private int downloadSize = 0;
/* 原始文件長(zhǎng)度 */
private int fileSize = 0;
/* 線程數(shù) */
private DownloadThread[] threads;
/* 本地保存文件 */
private File saveFile;
/* 緩存各線程下載的長(zhǎng)度*/
private Map<Integer, Integer> data = new ConcurrentHashMap<Integer, Integer>();
/* 每條線程下載的長(zhǎng)度 */
private int block;
/* 下載路徑 */
private String downloadUrl;
/**
* 獲取線程數(shù)
*/
public int getThreadSize() {
return threads.length;
}
/**
* 獲取文件大小
* @return
*/
public int getFileSize() {
return fileSize;
}
/**
* 累計(jì)已下載大小
* @param size
*/
protected synchronized void append(int size) {
downloadSize += size;
}
/**
* 更新指定線程最后下載的位置
* @param threadId 線程id
* @param pos 最后下載的位置
*/
protected synchronized void update(int threadId, int pos) {
this.data.put(threadId, pos);
this.fileService.update(this.downloadUrl, this.data);
}
/**
* 構(gòu)建文件下載器
* @param downloadUrl 下載路徑
* @param fileSaveDir 文件保存目錄
* @param threadNum 下載線程數(shù)
*/
public FileDownloader(Context context, String downloadUrl, File fileSaveDir, int threadNum) {
try {
this.context = context;
this.downloadUrl = downloadUrl;
fileService = new FileService(this.context);
URL url = new URL(this.downloadUrl);
if(!fileSaveDir.exists()) fileSaveDir.mkdirs();
this.threads = new DownloadThread[threadNum];
//1.獲得文件大小
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setConnectTimeout(5*1000);
conn.setRequestMethod("GET");
conn.setRequestProperty("Accept", "image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/xaml+xml, application/vnd.ms-xpsdocument, application/x-ms-xbap, application/x-ms-application, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*");
conn.setRequestProperty("Accept-Language", "zh-CN");
conn.setRequestProperty("Referer", downloadUrl);
conn.setRequestProperty("Charset", "UTF-8");
conn.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
conn.setRequestProperty("Connection", "Keep-Alive");
conn.connect();
printResponseHeader(conn);
if (conn.getResponseCode()==200) {
this.fileSize = conn.getContentLength();//根據(jù)響應(yīng)獲取文件大小
if (this.fileSize <= 0) throw new RuntimeException("Unkown file size ");
String filename = getFileName(conn);//獲取文件名稱
this.saveFile = new File(fileSaveDir, filename);//構(gòu)建保存文件
Map<Integer, Integer> logdata = fileService.getData(downloadUrl);//獲取下載記錄
//2.如果以前已經(jīng)下載過(guò),則從數(shù)據(jù)庫(kù)中導(dǎo)入記錄,并繼續(xù)下載
if(logdata.size()>0){//如果存在下載記錄
for(Map.Entry<Integer, Integer> entry : logdata.entrySet())
data.put(entry.getKey(), entry.getValue());//把各條線程已經(jīng)下載的數(shù)據(jù)長(zhǎng)度放入data中
}
if(this.data.size()==this.threads.length){//下面計(jì)算所有線程已經(jīng)下載的數(shù)據(jù)長(zhǎng)度
for (int i = 0; i < this.threads.length; i++) {
this.downloadSize += this.data.get(i+1);
}
print("已經(jīng)下載的長(zhǎng)度"+ this.downloadSize);
}
//計(jì)算每條線程下載的數(shù)據(jù)長(zhǎng)度
this.block = (this.fileSize % this.threads.length)==0? this.fileSize / this.threads.length : this.fileSize / this.threads.length + 1;
}else{
throw new RuntimeException("server no response ");
}
} catch (Exception e) {
print(e.toString());
throw new RuntimeException("don't connection this url");
}
}
/**
* 獲取文件名
*/
private String getFileName(HttpURLConnection conn) {
String filename = this.downloadUrl.substring(this.downloadUrl.lastIndexOf('/') + 1);
if(filename==null || "".equals(filename.trim())){//如果獲取不到文件名稱
for (int i = 0;; i++) {
String mine = conn.getHeaderField(i);
if (mine == null) break;
if("content-disposition".equals(conn.getHeaderFieldKey(i).toLowerCase())){
Matcher m = Pattern.compile(".*filename=(.*)").matcher(mine.toLowerCase());
if(m.find()) return m.group(1);
}
}
filename = UUID.randomUUID()+ ".tmp";//默認(rèn)取一個(gè)文件名
}
return filename;
}
/**
* 開(kāi)始下載文件
* @param listener 監(jiān)聽(tīng)下載數(shù)量的變化,如果不需要了解實(shí)時(shí)下載的數(shù)量,可以設(shè)置為null
* @return 已下載文件大小
* @throws Exception
*/
public int download(DownloadProgressListener listener) throws Exception{
try {
RandomAccessFile randOut = new RandomAccessFile(this.saveFile, "rw");
if(this.fileSize>0) randOut.setLength(this.fileSize);
randOut.close();
URL url = new URL(this.downloadUrl);
//如果線程數(shù)與以前不一樣,則重新開(kāi)始下
if(this.data.size() != this.threads.length){
this.data.clear();
for (int i = 0; i < this.threads.length; i++) {
this.data.put(i+1, 0);//初始化每條線程已經(jīng)下載的數(shù)據(jù)長(zhǎng)度為0
}
}
for (int i = 0; i < this.threads.length; i++) {//開(kāi)啟線程進(jìn)行下載
int downLength = this.data.get(i+1);
if(downLength < this.block && this.downloadSize<this.fileSize){//判斷線程是否已經(jīng)完成下載,否則繼續(xù)下載
this.threads[i] = new DownloadThread(this, url, this.saveFile, this.block, this.data.get(i+1), i+1);
this.threads[i].setPriority(7);
this.threads[i].start();
}else{
this.threads[i] = null;
}
}
this.fileService.save(this.downloadUrl, this.data);
boolean notFinish = true;//下載未完成
while (notFinish) {// 循環(huán)判斷所有線程是否完成下載
Thread.sleep(900);
notFinish = false;//假定全部線程下載完成
for (int i = 0; i < this.threads.length; i++){
if (this.threads[i] != null && !this.threads[i].isFinish()) {//如果發(fā)現(xiàn)線程未完成下載
notFinish = true;//設(shè)置標(biāo)志為下載沒(méi)有完成
if(this.threads[i].getDownLength() == -1){//如果下載失敗,再重新下載
this.threads[i] = new DownloadThread(this, url, this.saveFile, this.block, this.data.get(i+1), i+1);
this.threads[i].setPriority(7);
this.threads[i].start();
}
}
}
if(listener!=null) listener.onDownloadSize(this.downloadSize);//通知目前已經(jīng)下載完成的數(shù)據(jù)長(zhǎng)度
}
fileService.delete(this.downloadUrl);
} catch (Exception e) {
print(e.toString());
throw new Exception("file download fail");
}
return this.downloadSize;
}
/**
* 獲取Http響應(yīng)頭字段
* @param http
* @return
*/
public static Map<String, String> getHttpResponseHeader(HttpURLConnection http) {
Map<String, String> header = new LinkedHashMap<String, String>();
for (int i = 0;; i++) {
String mine = http.getHeaderField(i);
if (mine == null) break;
header.put(http.getHeaderFieldKey(i), mine);
}
return header;
}
/**
* 打印Http頭字段
* @param http
*/
public static void printResponseHeader(HttpURLConnection http){
Map<String, String> header = getHttpResponseHeader(http);
for(Map.Entry<String, String> entry : header.entrySet()){
String key = entry.getKey()!=null ? entry.getKey()+ ":" : "";
print(key+ entry.getValue());
}
}
private static void print(String msg){
Log.i(TAG, msg);
}
}
DownloadThread.java
package net.download;
import java.io.File;
import java.io.InputStream;
import java.io.RandomAccessFile;
import java.net.HttpURLConnection;
import java.net.URL;
import android.util.Log;
public class DownloadThread extends Thread {
private static final String TAG = "DownloadThread";
private File saveFile;
private URL downUrl;
private int block;
/* 下載開(kāi)始位置 */
private int threadId = -1;
private int downLength;
private boolean finish = false;
private FileDownloader downloader;
public DownloadThread(FileDownloader downloader, URL downUrl, File saveFile, int block, int downLength, int threadId) {
this.downUrl = downUrl;
this.saveFile = saveFile;
this.block = block;
this.downloader = downloader;
this.threadId = threadId;
this.downLength = downLength;
}
@Override
public void run() {
if(downLength < block){//未下載完成
try {
HttpURLConnection http = (HttpURLConnection) downUrl.openConnection();
http.setConnectTimeout(5 * 1000);
http.setRequestMethod("GET");
http.setRequestProperty("Accept", "image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/xaml+xml, application/vnd.ms-xpsdocument, application/x-ms-xbap, application/x-ms-application, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*");
http.setRequestProperty("Accept-Language", "zh-CN");
http.setRequestProperty("Referer", downUrl.toString());
http.setRequestProperty("Charset", "UTF-8");
int startPos = block * (threadId - 1) + downLength;//開(kāi)始位置
int endPos = block * threadId -1;//結(jié)束位置
http.setRequestProperty("Range", "bytes=" + startPos + "-"+ endPos);//設(shè)置獲取實(shí)體數(shù)據(jù)的范圍
http.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
http.setRequestProperty("Connection", "Keep-Alive");
InputStream inStream = http.getInputStream();
byte[] buffer = new byte[1024];
int offset = 0;
print("Thread " + this.threadId + " start download from position "+ startPos);
RandomAccessFile threadfile = new RandomAccessFile(this.saveFile, "rwd");
threadfile.seek(startPos);
while ((offset = inStream.read(buffer, 0, 1024)) != -1) {
threadfile.write(buffer, 0, offset);
downLength += offset;
downloader.update(this.threadId, downLength);
downloader.append(offset);
}
threadfile.close();
inStream.close();
print("Thread " + this.threadId + " download finish");
this.finish = true;
} catch (Exception e) {
this.downLength = -1;
print("Thread "+ this.threadId+ ":"+ e);
}
}
}
private static void print(String msg){
Log.i(TAG, msg);
}
/**
* 下載是否完成
* @return
*/
public boolean isFinish() {
return finish;
}
/**
* 已經(jīng)下載的內(nèi)容大小
* @return 如果返回值為-1,代表下載失敗
*/
public long getDownLength() {
return downLength;
}
}
DownloadProgressListener.java
package net.download;
//下載監(jiān)聽(tīng)器
public interface DownloadProgressListener {
public void onDownloadSize(int size);
}
三、具體代碼
效果如下:

實(shí)現(xiàn)代碼:
package org.xiazdong.download;
import java.io.File;
import net.download.DownloadProgressListener;
import net.download.FileDownloader;
import android.app.Activity;
import android.os.Bundle;
import android.os.Environment;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity {
private Button downloadButton;
private EditText urlpathEditText;
private TextView percentTextView;
private ProgressBar progressBar;
private Handler handler;
//主線程
private class UIHandler extends Handler{
@Override
public void handleMessage(Message msg) {
int downloadsize = msg.getData().getInt("downloadsize");
int percent = msg.getData().getInt("percent");
progressBar.setProgress(downloadsize);
percentTextView.setText(percent+"%");
}
}
private OnClickListener listener = new OnClickListener() {
DownloadThread thread;
class DownloadThread extends Thread{
private String url ;
private File saveDir;
private FileDownloader download;
public DownloadThread(String url, File saveDir) {
this.url = url;
this.saveDir = saveDir;
}
//子線程
@Override
public void run() {
download = new FileDownloader(MainActivity.this,url, saveDir, 3);
progressBar.setMax(download.getFileSize()); //設(shè)置最大刻度
try {
download.download(downListener);
} catch (Exception e) {
e.printStackTrace();
}
}
}
//由子線程調(diào)用
private DownloadProgressListener downListener = new DownloadProgressListener() {
@Override
public void onDownloadSize(int size) {
//實(shí)時(shí)跟蹤下載的情況
int percent = (int)(((double)size)/progressBar.getMax()*100);
Message msg = new Message();
msg.what = 1; //設(shè)置id
System.out.println(percent+"%");
System.out.println(size+"k");
msg.getData().putInt("percent", percent);
msg.getData().putInt("downloadsize",size);
handler.sendMessage(msg);
}
};
@Override
public void onClick(View v) {
if(v==downloadButton){
if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){
String url = urlpathEditText.getText().toString();
File saveDir = Environment.getExternalStorageDirectory();
download(url,saveDir);
}
else{
Toast.makeText(MainActivity.this, "SDCARD不存在", Toast.LENGTH_SHORT).show();
}
}
}
private void download(String url, File saveDir) {
thread = new DownloadThread(url,saveDir);
thread.start();
}
};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
downloadButton = (Button)findViewById(R.id.download);
urlpathEditText = (EditText)findViewById(R.id.path);
percentTextView = (TextView)findViewById(R.id.textView);
progressBar = (ProgressBar)findViewById(R.id.progressBar);
downloadButton.setOnClickListener(listener);
handler = new UIHandler();
}
}
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- Android 斷點(diǎn)下載和自動(dòng)安裝的示例代碼
- android多線程斷點(diǎn)下載-帶進(jìn)度條和百分比進(jìn)度顯示效果
- Android HttpURLConnection斷點(diǎn)下載(單線程)
- Android原生實(shí)現(xiàn)多線程斷點(diǎn)下載實(shí)例代碼
- 詳解Android中的多線程斷點(diǎn)下載
- Android使用多線程實(shí)現(xiàn)斷點(diǎn)下載
- Android實(shí)現(xiàn)斷點(diǎn)下載的方法
- Android實(shí)現(xiàn)多線程斷點(diǎn)下載的方法
- Android實(shí)現(xiàn)斷點(diǎn)多線程下載
相關(guān)文章
Android實(shí)現(xiàn)PDF預(yù)覽打印功能
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)PDF預(yù)覽打印功能,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-12-12
Android中利用Xposed框架實(shí)現(xiàn)攔截系統(tǒng)方法
這篇文章主要介紹了Android中利用Xposed框架實(shí)現(xiàn)攔截系統(tǒng)方法的相關(guān)資料,需要的朋友可以參考下2016-11-11
Android分頁(yè)中顯示出下面翻頁(yè)的導(dǎo)航欄的布局實(shí)例代碼
這篇文章主要介紹了Android分頁(yè)中顯示出下面翻頁(yè)的導(dǎo)航欄的布局實(shí)例代碼,需要的朋友可以參考下2017-04-04
Android開(kāi)發(fā)中聽(tīng)筒無(wú)法播放音樂(lè)的解決方法
這篇文章主要介紹了Android開(kāi)發(fā)中聽(tīng)筒無(wú)法播放音樂(lè)的解決方法,涉及Android權(quán)限控制中的相關(guān)屬性設(shè)置技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2016-10-10
Android實(shí)現(xiàn)為GridView添加邊框效果
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)為GridView添加邊框效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-12-12
android中ViewPager結(jié)合Fragment進(jìn)行無(wú)限滑動(dòng)
本篇文章中主要介紹了android中ViewPager結(jié)合Fragment進(jìn)行無(wú)限滑動(dòng),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下。2017-03-03
Android實(shí)現(xiàn)類似iOS風(fēng)格的對(duì)話框?qū)嵗a
通過(guò)本文給大家分享一個(gè)簡(jiǎn)單的常用的對(duì)話框類,關(guān)于Android實(shí)現(xiàn)類似iOS風(fēng)格的對(duì)話框?qū)嵗a大家通過(guò)本文學(xué)習(xí)下吧2017-09-09

