RxJava2.x+ReTrofit2.x多線程下載文件的示例代碼
寫在前面:
接到公司需求:要做一個apk升級的功能,原理其實很簡單,百度也一大堆例子,可大部分都是用框架,要么就是HttpURLConnection,實在是不想這么干。正好看了兩天的RxJava2.x+ReTrofit2.x,據(jù)說這倆框架是目前最火的異步請求框架了。固本文使用RxJava2.x+ReTrofit2.x實現(xiàn)多線程下載文件的功能。
如果對RxJava2.x+ReTrofit2.x不太了解的請先去看相關(guān)的文檔。
大神至此請無視。
思路分析:
思路及其簡潔明了,主要分為以下四步
1.獲取服務(wù)器文件大小.
2.根據(jù)文件大小規(guī)劃線程數(shù)量.
3.根據(jù)下載內(nèi)容合并為完整文件.
4.調(diào)用安裝,安裝apk.
功能實現(xiàn)
來,接下來是你們最喜歡的擼代碼環(huán)節(jié)
1.首先看引用
compile 'io.reactivex:rxjava:latest.release' compile 'io.reactivex:rxandroid:latest.release' //network - squareup compile 'com.squareup.retrofit2:retrofit:latest.release' compile 'com.squareup.retrofit2:adapter-rxjava:latest.release' compile 'com.squareup.okhttp3:okhttp:latest.release' compile 'com.squareup.okhttp3:logging-interceptor:latest.release'
2.構(gòu)造一個下載接口DownloadService.class
public interface DownloadService { @Streaming @GET //downParam下載參數(shù),傳下載區(qū)間使用 //url 下載鏈接 Observable<ResponseBody> download(@Header("RANGE") String downParam,@Url String url); }
3.為了使用方便封裝了一個RetrofitHelper.class,主要用于:
a)實例化OkHttpClient和Retrofit.
public RetrofitHelper(String url, DownloadProgressListener listener) { DownloadProgressInterceptor interceptor = new DownloadProgressInterceptor(listener); OkHttpClient client = new OkHttpClient.Builder() .addInterceptor(interceptor) .retryOnConnectionFailure(true) .connectTimeout(DEFAULT_TIMEOUT, TimeUnit.SECONDS) .build(); retrofit = new Retrofit.Builder() .baseUrl(url) .client(client) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .build(); }
b)封裝下載方法,本次下載我使用的是三個下載線程,并沒有動態(tài)分配,各位可以根據(jù)自己的需求去動態(tài)分配線程個數(shù)
public Observable download(@NonNull final long start, @NonNull final long end, @NonNull final String url, final File file, final Subscriber subscriber) { String str = ""; if (end == -1) { str = ""; } else { str = end + ""; } return retrofit.create(DownloadService.class).download("bytes=" + start + "-" + str, url).subscribeOn(Schedulers.io()).unsubscribeOn(Schedulers.io()).map(new Func1<ResponseBody, ResponseBody>() { @Override public ResponseBody call(ResponseBody responseBody) { return responseBody; } }).observeOn(Schedulers.computation()).doOnNext(new Action1<ResponseBody>() { @Override public void call(ResponseBody responseBody) { //第一次請求全部文件長度 if (end == -1) { try { RandomAccessFile randomFile = new RandomAccessFile(file, "rw"); randomFile.setLength(responseBody.contentLength()); long one = responseBody.contentLength() / 3; download(0, one, url, file, subscriber).mergeWith(download(one, one * 2, url, file, subscriber)).mergeWith(download(one * 2, responseBody.contentLength(), url, file, subscriber)).subscribe(subscriber); } catch (IOException e) { e.printStackTrace(); } } else { FileUtils fileUtils = new FileUtils(); fileUtils.writeFile(start, end, responseBody.byteStream(), file); } } }).subscribeOn(AndroidSchedulers.mainThread()); }
4.調(diào)用下載
注:調(diào)用下載在MainAcitivity中進行,為了直觀我們封裝了進度攔截器以方便實現(xiàn)進度顯示,但是本篇不在敘述進度攔截器的實現(xiàn)過程,如有需要可以留言。
a)實現(xiàn)監(jiān)聽對象
subscriber = new Subscriber() { @Override public void onCompleted() { Log.e("MainActivity", "onCompleted下下載完成"); // Toast.makeText(MainActivity.this, "onCompleted下下載完成", Toast.LENGTH_LONG).show(); installAPK("mnt/sdcard/aaaaaaaaa.apk"); } @Override public void onError(Throwable e) { e.printStackTrace(); Log.e("MainActivity", "onError: " + e.getMessage()); } @Override public void onNext(Object o) { } };
b)調(diào)用封裝的RetrofitHelper實現(xiàn)下載
RetrofitHelper RetrofitHelper = new RetrofitHelper("http://gdown.baidu.com/data/wisegame/0904344dee4a2d92/", new DownloadProgressListener() { @Override public void update(long bytesRead, long contentLength, boolean done) { SharedPF.getSharder().setLong("update", bytesRead); pro.setProgress((int) ((double) bytesRead / contentLength * 100)); temp++; if (temp <= 1) { Log.e("MainActivity", "update" + bytesRead + ""); } } }); RetrofitHelper.download(0, -1, "QQ_718.apk", new File("mnt/sdcard/", "aaaaaaaaa.apk"), subscriber).subscribe(new Subscriber() { @Override public void onCompleted() { } @Override public void onError(Throwable e) { } @Override public void onNext(Object o) { } }); }
注:最后貼一個apk安裝的方法
// 安裝APK public void installAPK(String filePath) { Intent intent = new Intent(); intent.setAction("android.intent.action.VIEW"); intent.addCategory("android.intent.category.DEFAULT"); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);// 廣播里面操作需要加上這句,存在于一個獨立的棧里 intent.setDataAndType(Uri.fromFile(new File(filePath)), "application/vnd.android.package-archive"); mainActivity.startActivity(intent); }
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
java中ArrayList和LinkedList的區(qū)別詳解
這篇文章主要介紹了java中ArrayList和LinkedList的區(qū)別詳解,幫助大家更好的理解和使用Java,感興趣的朋友可以了解下2021-01-01Intellij IDEA 2017.3使用Lombok及常用注解介紹
這篇文章主要介紹了Intellij IDEA 2017.3使用Lombok及常用注解介紹,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2019-09-09