Android 斷點續傳
- package com.example.downloaderstopsart;
- import java.util.ArrayList;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import android.os.Bundle;
- import android.os.Handler;
- import android.os.Message;
- import android.os.StrictMode;
- import android.app.ListActivity;
- import android.view.View;
- import android.widget.LinearLayout;
- import android.widget.LinearLayout.LayoutParams;
- import android.widget.ProgressBar;
- import android.widget.SimpleAdapter;
- import android.widget.TextView;
- import android.widget.Toast;
- public class MainActivity extends ListActivity {
- // 固定下載的資源路徑,這裡可以設定網路上的地址
- private static final String URL = "http://10.81.36.193:8080/";
- // 固定存放下載的音樂的路徑:SD卡目錄下
- private static final String SD_PATH = "/mnt/sdcard/";
- // 存放各個下載器
- private Map<String, Downloader> downloaders = new HashMap<String, Downloader>();
- // 存放與下載器對應的進度條
- private Map<String, ProgressBar> ProgressBars = new HashMap<String, ProgressBar>();
- /**
- * 利用訊息處理機制適時更新進度條
- */
- private Handler mHandler = new Handler() {
- public void handleMessage(Message msg) {
- if (msg.what == 1) {
- String url = (String) msg.obj;
- int length = msg.arg1;
- ProgressBar bar = ProgressBars.get(url);
- if (bar != null) {
- // 設定進度條按讀取的length長度更新
- bar.incrementProgressBy(length);
- if (bar.getProgress() == bar.getMax()) {
- Toast.makeText(MainActivity.this, "下載完成!", 0).show();
- // 下載完成後清除進度條並將map中的資料清空
- LinearLayout layout = (LinearLayout) bar.getParent();
- layout.removeView(bar);
- ProgressBars.remove(url);
- downloaders.get(url).delete(url);
- downloaders.get(url).reset();
- downloaders.remove(url);
- }
- }
- }
- }
- };
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- showListView();
- StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().detectDiskReads().detectDiskWrites().detectNetwork().penaltyLog().build());
- StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder().detectLeakedSqlLiteObjects().detectLeakedClosableObjects().penaltyLog().penaltyDeath().build());
- }
- // 顯示listView,這裡可以隨便新增音樂
- private void showListView() {
- List<Map<String, String>> data = new ArrayList<Map<String, String>>();
- Map<String, String> map = new HashMap<String, String>();
- map.put("name", "mm.mp3");
- data.add(map);
- map = new HashMap<String, String>();
- map.put("name", "pp.mp3");
- data.add(map);
- map = new HashMap<String, String>();
- map.put("name", "tt.mp3");
- data.add(map);
- map = new HashMap<String, String>();
- map.put("name", "ou.mp3");
- data.add(map);
- SimpleAdapter adapter = new SimpleAdapter(this, data, R.layout.list_item, new String[] { "name" },
- new int[] { R.id.tv_resouce_name });
- setListAdapter(adapter);
- }
- /**
- * 響應開始下載按鈕的點選事件
- */
- public void startDownload(View v) {
- // 得到textView的內容
- LinearLayout layout = (LinearLayout) v.getParent();
- String musicName = ((TextView) layout.findViewById(R.id.tv_resouce_name)).getText().toString();
- String urlstr = URL + musicName;
- String localfile = SD_PATH + musicName;
- //設定下載執行緒數為4,這裡是我為了方便隨便固定的
- int threadcount = 4;
- // 初始化一個downloader下載器
- Downloader downloader = downloaders.get(urlstr);
- if (downloader == null) {
- downloader = new Downloader(urlstr, localfile, threadcount, this, mHandler);
- downloaders.put(urlstr, downloader);
- }
- if (downloader.isdownloading())
- return;
- // 得到下載資訊類的個陣列成集合
- LoadInfo loadInfo = downloader.getDownloaderInfors();
- // 顯示進度條
- showProgress(loadInfo, urlstr, v);
- // 呼叫方法開始下載
- downloader.download();
- }
- /**
- * 顯示進度條
- */
- private void showProgress(LoadInfo loadInfo, String url, View v) {
- ProgressBar bar = ProgressBars.get(url);
- if (bar == null) {
- bar = new ProgressBar(this, null, android.R.attr.progressBarStyleHorizontal);
- bar.setMax(loadInfo.getFileSize());
- bar.setProgress(loadInfo.getComplete());
- ProgressBars.put(url, bar);
- LinearLayout.LayoutParams params = new LayoutParams(LayoutParams.FILL_PARENT, 5);
- ((LinearLayout) ((LinearLayout) v.getParent()).getParent()).addView(bar, params);
- }
- }
- /**
- * 響應暫停下載按鈕的點選事件
- */
- public void pauseDownload(View v) {
- LinearLayout layout = (LinearLayout) v.getParent();
- String musicName = ((TextView) layout.findViewById(R.id.tv_resouce_name)).getText().toString();
- String urlstr = URL + musicName;
- downloaders.get(urlstr).pause();
- }
- }
DBHelper:
- package com.example.downloaderstopsart;
- import android.content.Context;
- import android.database.sqlite.SQLiteDatabase;
- import android.database.sqlite.SQLiteOpenHelper;
- /**
- * 建立一個資料庫幫助類
- */
- public class DBHelper extends SQLiteOpenHelper {
- // download.db-->資料庫名
- public DBHelper(Context context) {
- super(context, "download.db", null, 1);
- }
- /**
- * 在download.db資料庫下建立一個download_info表儲存下載資訊
- */
- @Override
- public void onCreate(SQLiteDatabase db) {
- db.execSQL("create table download_info(_id integer PRIMARY KEY AUTOINCREMENT, thread_id integer, "
- + "start_pos integer, end_pos integer, compelete_size integer,url char)");
- }
- @Override
- public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
- }
- }
- DownloadInfo:
- package com.example.downloaderstopsart;
- public class DownloadInfo {
- private int threadId;// 下載器id
- private int startPos;// 開始點
- private int endPos;// 結束點
- private int compeleteSize;// 完成度
- private String url;// 下載器網路標識
- public DownloadInfo(int threadId, int startPos, int endPos,
- int compeleteSize, String url) {
- this.threadId = threadId;
- this.startPos = startPos;
- this.endPos = endPos;
- this.compeleteSize = compeleteSize;
- this.url = url;
- }
- public DownloadInfo() {
- }
- public String getUrl() {
- return url;
- }
- public void setUrl(String url) {
- this.url = url;
- }
- public int getThreadId() {
- return threadId;
- }
- public void setThreadId(int threadId) {
- this.threadId = threadId;
- }
- public int getStartPos() {
- return startPos;
- }
- public void setStartPos(int startPos) {
- this.startPos = startPos;
- }
- public int getEndPos() {
- return endPos;
- }
- public void setEndPos(int endPos) {
- this.endPos = endPos;
- }
- public int getCompeleteSize() {
- return compeleteSize;
- }
- public void setCompeleteSize(int compeleteSize) {
- this.compeleteSize = compeleteSize;
- }
- @Override
- public String toString() {
- return "DownloadInfo [threadId=" + threadId + ", startPos=" + startPos
- + ", endPos=" + endPos + ", compeleteSize=" + compeleteSize
- + "]";
- }
- }
LoadInfo:
- package com.example.downloaderstopsart;
- public class LoadInfo {
- public int fileSize;// 檔案大小
- private int complete;// 完成度
- private String urlstring;// 下載器標識
- public LoadInfo(int fileSize, int complete, String urlstring) {
- this.fileSize = fileSize;
- this.complete = complete;
- this.urlstring = urlstring;
- }
- public LoadInfo() {
- }
- public int getFileSize() {
- return fileSize;
- }
- public void setFileSize(int fileSize) {
- this.fileSize = fileSize;
- }
- public int getComplete() {
- return complete;
- }
- public void setComplete(int complete) {
- this.complete = complete;
- }
- public String getUrlstring() {
- return urlstring;
- }
- public void setUrlstring(String urlstring) {
- this.urlstring = urlstring;
- }
- @Override
- public String toString() {
- return "LoadInfo [fileSize=" + fileSize + ", complete=" + complete
- + ", urlstring=" + urlstring + "]";
- }
- }
Downloader:
- package com.example.downloaderstopsart;
- import java.io.File;
- import java.io.InputStream;
- import java.io.RandomAccessFile;
- import java.net.HttpURLConnection;
- import java.net.URL;
- import java.util.ArrayList;
- import java.util.List;
- import android.content.Context;
- import android.os.Handler;
- import android.os.Message;
- import android.util.Log;
- public class Downloader {
- private String urlstr;// 下載的地址
- private String localfile;// 儲存路徑
- private int threadcount;// 執行緒數
- private Handler mHandler;// 訊息處理器
- private Dao dao;// 工具類
- private int fileSize;// 所要下載的檔案的大小
- private List<DownloadInfo> infos;// 存放下載資訊類的集合
- private static final int INIT = 1;//定義三種下載的狀態:初始化狀態,正在下載狀態,暫停狀態
- private static final int DOWNLOADING = 2;
- private static final int PAUSE = 3;
- private int state = INIT;
- public Downloader(String urlstr, String localfile, int threadcount,
- Context context, Handler mHandler) {
- this.urlstr = urlstr;
- this.localfile = localfile;
- this.threadcount = threadcount;
- this.mHandler = mHandler;
- dao = new Dao(context);
- }
- /**
- *判斷是否正在下載
- */
- public boolean isdownloading() {
- return state == DOWNLOADING;
- }
- /**
- * 得到downloader裡的資訊
- * 首先進行判斷是否是第一次下載,如果是第一次就要進行初始化,並將下載器的資訊儲存到資料庫中
- * 如果不是第一次下載,那就要從資料庫中讀出之前下載的資訊(起始位置,結束為止,檔案大小等),並將下載資訊返回給下載器
- */
- public LoadInfo getDownloaderInfors() {
- if (isFirst(urlstr)) {
- Log.v("TAG", "isFirst");
- init();
- int range = fileSize / threadcount;
- infos = new ArrayList<DownloadInfo>();
- for (int i = 0; i < threadcount - 1; i++) {
- DownloadInfo info = new DownloadInfo(i, i * range, (i + 1)* range - 1, 0, urlstr);
- infos.add(info);
- }
- DownloadInfo info = new DownloadInfo(threadcount - 1,(threadcount - 1) * range, fileSize - 1, 0, urlstr);
- infos.add(info);
- //儲存infos中的資料到資料庫
- dao.saveInfos(infos);
- //建立一個LoadInfo物件記載下載器的具體資訊
- LoadInfo loadInfo = new LoadInfo(fileSize, 0, urlstr);
- return loadInfo;
- } else {
- //得到資料庫中已有的urlstr的下載器的具體資訊
- infos = dao.getInfos(urlstr);
- Log.v("TAG", "not isFirst size=" + infos.size());
- int size = 0;
- int compeleteSize = 0;
- for (DownloadInfo info : infos) {
- compeleteSize += info.getCompeleteSize();
- size += info.getEndPos() - info.getStartPos() + 1;
- }
- return new LoadInfo(size, compeleteSize, urlstr);
- }
- }
- /**
- * 初始化
- */
- private void init() {
- try {
- URL url = new URL(urlstr);
- HttpURLConnection connection = (HttpURLConnection) url.openConnection();
- connection.setConnectTimeout(5000);
- connection.setRequestMethod("GET");
- fileSize = connection.getContentLength();
- File file = new File(localfile);
- if (!file.exists()) {
- file.createNewFile();
- }
- // 本地訪問檔案
- RandomAccessFile accessFile = new RandomAccessFile(file, "rwd");
- accessFile.setLength(fileSize);
- accessFile.close();
- connection.disconnect();
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
- * 判斷是否是第一次 下載
- */
- private boolean isFirst(String urlstr) {
- return dao.isHasInfors(urlstr);
- }
- /**
- * 利用執行緒開始下載資料
- */
- public void download() {
- if (infos != null) {
- if (state == DOWNLOADING)
- return;
- state = DOWNLOADING;
- for (DownloadInfo info : infos) {
- new MyThread(info.getThreadId(), info.getStartPos(),
- info.getEndPos(), info.getCompeleteSize(),
- info.getUrl()).start();
- }
- }
- }
- public class MyThread extends Thread {
- private int threadId;
- private int startPos;
- private int endPos;
- private int compeleteSize;
- private String urlstr;
- public MyThread(int threadId, int startPos, int endPos,
- int compeleteSize, String urlstr) {
- this.threadId = threadId;
- this.startPos = startPos;
- this.endPos = endPos;
- this.compeleteSize = compeleteSize;
- this.urlstr = urlstr;
- }
- @Override
- public void run() {
- HttpURLConnection connection = null;
- RandomAccessFile randomAccessFile = null;
- InputStream is = null;
- try {
- URL url = new URL(urlstr);
- connection = (HttpURLConnection) url.openConnection();
- connection.setConnectTimeout(5000);
- connection.setRequestMethod("GET");
- // 設定範圍,格式為Range:bytes x-y;
- connection.setRequestProperty("Range", "bytes="+(startPos + compeleteSize) + "-" + endPos);
- randomAccessFile = new RandomAccessFile(localfile, "rwd");
- randomAccessFile.seek(startPos + compeleteSize);
- Log.i("RG", "connection--->>>"+connection);
- // 將要下載的檔案寫到儲存在儲存路徑下的檔案中
- is = connection.getInputStream();
- byte[] buffer = new byte[4096];
- int length = -1;
- while ((length = is.read(buffer)) != -1) {
- randomAccessFile.write(buffer, 0, length);
- compeleteSize += length;
- // 更新資料庫中的下載資訊
- dao.updataInfos(threadId, compeleteSize, urlstr);
- // 用訊息將下載資訊傳給進度條,對進度條進行更新
- Message message = Message.obtain();
- message.what = 1;
- message.obj = urlstr;
- message.arg1 = length;
- mHandler.sendMessage(message);
- if (state == PAUSE) {
- return;
- }
- }
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- try {
- is.close();
- randomAccessFile.close();
- connection.disconnect();
- dao.closeDb();
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- }
- }
- //刪除資料庫中urlstr對應的下載器資訊
- public void delete(String urlstr) {
- dao.delete(urlstr);
- }
- //設定暫停
- public void pause() {
- state = PAUSE;
- }
- //重置下載狀態
- public void reset() {
- state = INIT;
- }
- }
Dao:
- package com.example.downloaderstopsart;
- import java.util.ArrayList;
- import java.util.List;
- import android.content.Context;
- import android.database.Cursor;
- import android.database.sqlite.SQLiteDatabase;
- public class Dao {
- private DBHelper dbHelper;
- public Dao(Context context) {
- dbHelper = new DBHelper(context);
- }
- /**
- * 檢視資料庫中是否有資料
- */
- public boolean isHasInfors(String urlstr) {
- SQLiteDatabase database = dbHelper.getReadableDatabase();
- String sql = "select count(*) from download_info where url=?";
- Cursor cursor = database.rawQuery(sql, new String[] { urlstr });
- cursor.moveToFirst();
- int count = cursor.getInt(0);
- cursor.close();
- return count == 0;
- }
- /**
- * 36 * 儲存 下載的具體資訊 37
- */
- public void saveInfos(List<DownloadInfo> infos) {
- SQLiteDatabase database = dbHelper.getWritableDatabase();
- for (DownloadInfo info : infos) {
- String sql = "insert into download_info(thread_id,start_pos, end_pos,compelete_size,url) values (?,?,?,?,?)";
- Object[] bindArgs = { info.getThreadId(), info.getStartPos(),
- info.getEndPos(), info.getCompeleteSize(), info.getUrl() };
- database.execSQL(sql, bindArgs);
- }
- }
- /**
- * 得到下載具體資訊
- */
- public List<DownloadInfo> getInfos(String urlstr) {
- List<DownloadInfo> list = new ArrayList<DownloadInfo>();
- SQLiteDatabase database = dbHelper.getReadableDatabase();
- String sql = "select thread_id, start_pos, end_pos,compelete_size,url from download_info where url=?";
- Cursor cursor = database.rawQuery(sql, new String[] { urlstr });
- while (cursor.moveToNext()) {
- DownloadInfo info = new DownloadInfo(cursor.getInt(0),
- cursor.getInt(1), cursor.getInt(2), cursor.getInt(3),
- cursor.getString(4));
- list.add(info);
- }
- cursor.close();
- return list;
- }
- /**
- * 更新資料庫中的下載資訊
- */
- public void updataInfos(int threadId, int compeleteSize, String urlstr) {
- SQLiteDatabase database = dbHelper.getReadableDatabase();
- String sql = "update download_info set compelete_size=? where thread_id=? and url=?";
- Object[] bindArgs = { compeleteSize, threadId, urlstr };
- database.execSQL(sql, bindArgs);
- }
- /**
- * 關閉資料庫
- */
- public void closeDb() {
- dbHelper.close();
- }
- /**
- * 下載完成後刪除資料庫中的資料
- */
- public void delete(String url) {
- SQLiteDatabase database = dbHelper.getReadableDatabase();
- database.delete("download_info", "url=?", new String[] { url });
- database.close();
- }
- }
xml如下:
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:id="@+id/llRoot">
- <ListView android:id="@android:id/list"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- </ListView>
- </LinearLayout>
item_list.xml:
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="5dip"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/tv_resouce_name"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1" />
- <Button
- android:id="@+id/btn_start"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:onClick="startDownload"
- android:text="下載" />
- <Button
- android:id="@+id/btn_pause"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:onClick="pauseDownload"
- android:text="暫停" />
- </LinearLayout>
- </LinearLayout>
記得加許可權:
- <uses-permission android:name="android.permission.INTERNET"/>
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
還有在3.0以上的版本記得加上這句話:
- StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().detectDiskReads().detectDiskWrites().detectNetwork().penaltyLog().build());
- StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder().detectLeakedSqlLiteObjects().detectLeakedClosableObjects().penaltyLog().penaltyDeath().build());
效果圖如下:
相關文章
- Android斷點續傳下載器JarvisDownloaderAndroid斷點JAR
- Android 中 Service+Notification 斷點續傳下載Android斷點
- Android中的多執行緒斷點續傳Android執行緒斷點
- Android原生下載(上篇)基本邏輯+斷點續傳Android斷點
- 斷點續傳教學例子斷點
- 上傳——斷點續傳之理論篇斷點
- Android下載檔案(一)下載進度&斷點續傳Android斷點
- 上傳——斷點續傳之實踐篇斷點
- 12. 斷點續傳的原理斷點
- scp實現斷點續傳---rsync斷點
- 關於http斷點續傳那點事HTTP斷點
- Java實現檔案斷點續傳Java斷點
- 大檔案上傳、斷點續傳、秒傳、beego、vue斷點GoVue
- OSS網頁上傳和斷點續傳(STSToken篇)網頁斷點
- 1. 大檔案上傳如何斷點續傳斷點
- VUE-多檔案斷點續傳、秒傳、分片上傳Vue斷點
- 斷點續傳瞭解一下啊?斷點
- JAVA編寫的斷點續傳小程式Java斷點
- 使用Visual C#實現斷點續傳C#斷點
- 使用curl斷點續傳下載檔案斷點
- OSS網頁上傳和斷點續傳(OSS配置篇)網頁斷點
- OSS網頁上傳和斷點續傳(終結篇)網頁斷點
- JAVA實現大檔案分片上傳斷點續傳Java斷點
- 支援斷點續傳的大檔案傳輸協議斷點協議
- Linux如何實現斷點續傳檔案功能?Linux斷點
- 資料壓縮傳輸與斷點續傳那些事兒斷點
- http斷點續傳原理:http頭 Range、Content-RangeHTTP斷點
- node靜態伺服器斷點續傳實現伺服器斷點
- Linux如何遠端複製,限速和斷點續傳Linux斷點
- Node.js實現大檔案斷點續傳Node.js斷點
- vue+element+oss實現前端分片上傳和斷點續傳Vue前端斷點
- Android多執行緒+單執行緒+斷點續傳+進度條顯示下載Android執行緒斷點
- Redis主從複製斷點續傳的工作原理概述Redis斷點
- Range/Content-Range與斷點續傳,瞭解一下?斷點
- 上傳大檔案-斷點續傳的一中方式的記錄斷點
- 基於tcp的http應用,斷點續傳,範圍請求TCPHTTP斷點
- Java斷點續傳(基於socket與RandomAccessFile的簡單實現)Java斷點randomMac
- C# HTTP實現斷點續傳客戶端和服務端C#HTTP斷點客戶端服務端
- PyTorch儲存模型斷點以及載入斷點繼續訓練PyTorch模型斷點