簡單的斷點續傳

TTMMJJ99發表於2017-11-10

效果如下:



  • 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!

相關文章