簡單的斷點續傳
效果如下:
- XUtils中包含的四大模組:
1、DbUtils模組
2、ViewUtils模組
3、HttpUtils模組:
-
-
-
- 支援同步,非同步方式的請求;
- 支援大檔案上傳,上傳大檔案不會oom;
- 支援GET,POST,PUT,MOVE,COPY,DELETE,HEAD,OPTIONS,TRACE,CONNECT請求;
- 下載支援301/302重定向,支援設定是否根據Content-Disposition重新命名下載的檔案;
- 返回文字內容的請求(預設只啟用了GET請求)支援快取,可設定預設過期時間和針對當前請求的過期時間。
-
-
4、BitmapUtils模組
- 這裡只是執行HttpUtils模組來進行多執行緒下載因為該模組支援斷點續傳,用起來非常方便!
1、開源地址
https://github.com/wyouflf/xUtils3.git
下載然後用zip解壓, 取出jar包放入工程新增即可.
新增jar包: xUtils-2.6.14.jar新增許可權:
<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
Activity程式碼
Boolean isDowloding = false; HttpHandler handler; private ProgressBar pb; private TextView tv_error; private TextView tv_progress; private Button btn_down, btn_stop;
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // 初始化 pb = (ProgressBar) findViewById(R.id.pb); tv_progress = (TextView) findViewById(R.id.tv_progress); tv_error = (TextView) findViewById(R.id.tv_failure); btn_down = (Button) findViewById(R.id.btn_down); btn_stop = (Button) findViewById(R.id.btn_stop); // 開始點選事件 btn_down.setOnClickListener(this); // 暫停點選事件 btn_stop.setOnClickListener(this); } @Override public void onClick(View view) { String fileName = "weixin_821.apk"; switch (view.getId()) { case R.id.btn_down: btn_stop.setEnabled(true); btn_down.setEnabled(false); String path = "http://gdown.baidu.com/data/wisegame/df65a597122796a4/" + fileName; HttpUtils http = new HttpUtils(); handler = http.download(path, Environment.getExternalStorageDirectory() + "/" + fileName, true, true, new RequestCallBack<File>() { @Override public void onSuccess(ResponseInfo<File> arg0) { isDowloding = false; // 下載成功 Toast.makeText(MainActivity.this, arg0.result.getPath(), Toast.LENGTH_SHORT).show(); } @Override public void onFailure(HttpException arg0, String arg1) { // 下載失敗 tv_error.setText(arg1); } @Override public void onLoading(long total, long current, boolean isUploading) { super.onLoading(total, current, isUploading); if (current < total) { isDowloding = true; } else { isDowloding = false; } // 下載任務 pb.setMax((int) total); pb.setProgress((int) current); tv_progress.setText(current * 100 / total + "%"); } }); break; case R.id.btn_stop: btn_stop.setEnabled(false); btn_down.setEnabled(true); if (isDowloding) { if (handler != null) { handler.cancel(); } } break; } }
xml佈局
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:id="@+id/btn_down" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="開始下載" /> <Button android:id="@+id/btn_stop" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="暫停下載" /> </LinearLayout> <TextView android:id="@+id/tv_failure" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <ProgressBar android:id="@+id/pb" style="@android:style/Widget.ProgressBar.Horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" /> <TextView android:id="@+id/tv_progress" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="下載進度" />
好了,教程結束。END!
相關文章
- 斷點續傳斷點
- Java斷點續傳(基於socket與RandomAccessFile的簡單實現)Java斷點randomMac
- Android 斷點續傳Android斷點
- 12. 斷點續傳的原理斷點
- 斷點續傳教學例子斷點
- 斷點續傳更新版斷點
- 上傳——斷點續傳之理論篇斷點
- OkHttp使用+檔案的上傳+斷點續傳HTTP斷點
- HTTP檔案斷點續傳的原理HTTP斷點
- 上傳——斷點續傳之實踐篇斷點
- scp實現斷點續傳---rsync斷點
- iOS大檔案斷點續傳iOS斷點
- 關於http斷點續傳那點事HTTP斷點
- JAVA編寫的斷點續傳小程式Java斷點
- 支援斷點續傳的大檔案傳輸協議斷點協議
- iOS開發NSURLConnection 斷點續傳iOS斷點
- 用Java實現斷點續傳(HTTP)Java斷點HTTP
- Java實現檔案斷點續傳Java斷點
- 大檔案上傳、斷點續傳、秒傳、beego、vue斷點GoVue
- OSS網頁上傳和斷點續傳(STSToken篇)網頁斷點
- C# FTP上傳下載(支援斷點續傳)C#FTP斷點
- C# 上傳下載ftp(支援斷點續傳)C#FTP斷點
- 1. 大檔案上傳如何斷點續傳斷點
- VUE-多檔案斷點續傳、秒傳、分片上傳Vue斷點
- 使用curl斷點續傳下載檔案斷點
- 斷點續傳瞭解一下啊?斷點
- Winform檔案下載之斷點續傳ORM斷點
- C# 斷點續傳原理與實現C#斷點
- Android中的多執行緒斷點續傳Android執行緒斷點
- iOS11 下載之斷點續傳的bugiOS斷點
- php 支援斷點續傳的檔案下載類PHP斷點
- OSS網頁上傳和斷點續傳(OSS配置篇)網頁斷點
- OSS網頁上傳和斷點續傳(終結篇)網頁斷點
- JAVA實現大檔案分片上傳斷點續傳Java斷點
- Linux斷點續傳檔案功能詳解Linux斷點
- C# 檔案下載之斷點續傳C#斷點
- android多執行緒斷點續傳薦Android執行緒斷點
- Liunx遠端複製(限速和斷點續傳)斷點