1. <ul id="0c1fb"></ul>

      <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
      <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区

      RELATEED CONSULTING
      相關(guān)咨詢
      選擇下列產(chǎn)品馬上在線溝通
      服務(wù)時間:8:30-17:00
      你可能遇到了下面的問題
      關(guān)閉右側(cè)工具欄

      新聞中心

      這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
      Retrofit+Rxjava如何實現(xiàn)帶進(jìn)度顯示的下載文件

      這篇文章將為大家詳細(xì)講解有關(guān)Retrofit+Rxjava如何實現(xiàn)帶進(jìn)度顯示的下載文件,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

      目前成都創(chuàng)新互聯(lián)已為1000多家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管、服務(wù)器租用、企業(yè)網(wǎng)站設(shè)計、貞豐網(wǎng)站維護(hù)等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

      具體內(nèi)容如下

      本文采用 :retrofit + rxjava

      1.引入:

      //rxJava
       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.增加下載進(jìn)度監(jiān)聽:

      public interface DownloadProgressListener {
       void update(long bytesRead, long contentLength, boolean done);
      }
      public class DownloadProgressResponseBody extends ResponseBody {
      
       private ResponseBody responseBody;
       private DownloadProgressListener progressListener;
       private BufferedSource bufferedSource;
      
       public DownloadProgressResponseBody(ResponseBody responseBody,
                DownloadProgressListener progressListener) {
        this.responseBody = responseBody;
        this.progressListener = progressListener;
       }
      
       @Override
       public MediaType contentType() {
        return responseBody.contentType();
       }
      
       @Override
       public long contentLength() {
        return responseBody.contentLength();
       }
      
       @Override
       public BufferedSource source() {
        if (bufferedSource == null) {
         bufferedSource = Okio.buffer(source(responseBody.source()));
        }
        return bufferedSource;
       }
      
       private Source source(Source source) {
        return new ForwardingSource(source) {
         long totalBytesRead = 0L;
      
         @Override
         public long read(Buffer sink, long byteCount) throws IOException {
          long bytesRead = super.read(sink, byteCount);
          // read() returns the number of bytes read, or -1 if this source is exhausted.
          totalBytesRead += bytesRead != -1 ? bytesRead : 0;
      
          if (null != progressListener) {
           progressListener.update(totalBytesRead, responseBody.contentLength(), bytesRead == -1);
          }
          return bytesRead;
         }
        };
      
       }
      }
      public class DownloadProgressInterceptor implements Interceptor {
      
       private DownloadProgressListener listener;
      
       public DownloadProgressInterceptor(DownloadProgressListener listener) {
        this.listener = listener;
       }
      
       @Override
       public Response intercept(Chain chain) throws IOException {
        Response originalResponse = chain.proceed(chain.request());
      
        return originalResponse.newBuilder()
          .body(new DownloadProgressResponseBody(originalResponse.body(), listener))
          .build();
       }
      }

      3.創(chuàng)建下載進(jìn)度的元素類:

      public class Download implements Parcelable {
      
       private int progress;
       private long currentFileSize;
       private long totalFileSize;
      
       public int getProgress() {
        return progress;
       }
      
       public void setProgress(int progress) {
        this.progress = progress;
       }
      
       public long getCurrentFileSize() {
        return currentFileSize;
       }
      
       public void setCurrentFileSize(long currentFileSize) {
        this.currentFileSize = currentFileSize;
       }
      
       public long getTotalFileSize() {
        return totalFileSize;
       }
      
       public void setTotalFileSize(long totalFileSize) {
        this.totalFileSize = totalFileSize;
       }
      
       @Override
       public int describeContents() {
        return 0;
       }
      
       @Override
       public void writeToParcel(Parcel dest, int flags) {
        dest.writeInt(this.progress);
        dest.writeLong(this.currentFileSize);
        dest.writeLong(this.totalFileSize);
       }
      
       public Download() {
       }
      
       protected Download(Parcel in) {
        this.progress = in.readInt();
        this.currentFileSize = in.readLong();
        this.totalFileSize = in.readLong();
       }
      
       public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {
        @Override
        public Download createFromParcel(Parcel source) {
         return new Download(source);
        }
      
        @Override
        public Download[] newArray(int size) {
         return new Download[size];
        }
       };
      }

      4.下載文件網(wǎng)絡(luò)類:

      public interface DownloadService {
      
       @Streaming
       @GET
       Observable download(@Url String url);
      }

      注:這里@Url是傳入完整的的下載URL;不用截取

      public class DownloadAPI {
       private static final String TAG = "DownloadAPI";
       private static final int DEFAULT_TIMEOUT = 15;
       public Retrofit retrofit;
      
      
       public DownloadAPI(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();
       }
      
       public void downloadAPK(@NonNull String url, final File file, Subscriber subscriber) {
        Log.d(TAG, "downloadAPK: " + url);
      
        retrofit.create(DownloadService.class)
          .download(url)
          .subscribeOn(Schedulers.io())
          .unsubscribeOn(Schedulers.io())
          .map(new Func1() {
           @Override
           public InputStream call(ResponseBody responseBody) {
            return responseBody.byteStream();
           }
          })
          .observeOn(Schedulers.computation())
          .doOnNext(new Action1() {
           @Override
           public void call(InputStream inputStream) {
            try {
             FileUtils.writeFile(inputStream, file);
            } catch (IOException e) {
             e.printStackTrace();
             throw new CustomizeException(e.getMessage(), e);
            }
           }
          })
          .observeOn(AndroidSchedulers.mainThread())
          .subscribe(subscriber);
       }
      
      
      }

      然后就是調(diào)用了:

      該網(wǎng)絡(luò)是在service里完成的

      public class DownloadService extends IntentService {
       private static final String TAG = "DownloadService";
      
       private NotificationCompat.Builder notificationBuilder;
       private NotificationManager notificationManager;
      
      
       private String apkUrl = "http://download.fir.im/v2/app/install/595c5959959d6901ca0004ac?download_token=1a9dfa8f248b6e45ea46bc5ed96a0a9e&source=update";
      
       public DownloadService() {
        super("DownloadService");
       }
      
       @Override
       protected void onHandleIntent(Intent intent) {
        notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
      
        notificationBuilder = new NotificationCompat.Builder(this)
          .setSmallIcon(R.mipmap.ic_download)
          .setContentTitle("Download")
          .setContentText("Downloading File")
          .setAutoCancel(true);
      
        notificationManager.notify(0, notificationBuilder.build());
      
        download();
       }
      
       private void download() {
        DownloadProgressListener listener = new DownloadProgressListener() {
         @Override
         public void update(long bytesRead, long contentLength, boolean done) {
          Download download = new Download();
          download.setTotalFileSize(contentLength);
          download.setCurrentFileSize(bytesRead);
          int progress = (int) ((bytesRead * 100) / contentLength);
          download.setProgress(progress);
      
          sendNotification(download);
         }
        };
        File outputFile = new File(Environment.getExternalStoragePublicDirectory
          (Environment.DIRECTORY_DOWNLOADS), "file.apk");
        String baseUrl = StringUtils.getHostName(apkUrl);
      
        new DownloadAPI(baseUrl, listener).downloadAPK(apkUrl, outputFile, new Subscriber() {
         @Override
         public void onCompleted() {
          downloadCompleted();
         }
      
         @Override
         public void onError(Throwable e) {
          e.printStackTrace();
          downloadCompleted();
          Log.e(TAG, "onError: " + e.getMessage());
         }
      
         @Override
         public void onNext(Object o) {
      
         }
        });
       }
      
       private void downloadCompleted() {
        Download download = new Download();
        download.setProgress(100);
        sendIntent(download);
      
        notificationManager.cancel(0);
        notificationBuilder.setProgress(0, 0, false);
        notificationBuilder.setContentText("File Downloaded");
        notificationManager.notify(0, notificationBuilder.build());
       }
      
       private void sendNotification(Download download) {
      
        sendIntent(download);
        notificationBuilder.setProgress(100, download.getProgress(), false);
        notificationBuilder.setContentText(
          StringUtils.getDataSize(download.getCurrentFileSize()) + "/" +
            StringUtils.getDataSize(download.getTotalFileSize()));
        notificationManager.notify(0, notificationBuilder.build());
       }
      
       private void sendIntent(Download download) {
      
        Intent intent = new Intent(MainActivity.MESSAGE_PROGRESS);
        intent.putExtra("download", download);
        LocalBroadcastManager.getInstance(DownloadService.this).sendBroadcast(intent);
       }
      
       @Override
       public void onTaskRemoved(Intent rootIntent) {
        notificationManager.cancel(0);
       }
      }

      MainActivity代碼:

      public class MainActivity extends AppCompatActivity {
      
       public static final String MESSAGE_PROGRESS = "message_progress";
      
       private AppCompatButton btn_download;
       private ProgressBar progress;
       private TextView progress_text;
      
      
       private BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
      
         if (intent.getAction().equals(MESSAGE_PROGRESS)) {
      
          Download download = intent.getParcelableExtra("download");
          progress.setProgress(download.getProgress());
          if (download.getProgress() == 100) {
      
           progress_text.setText("File Download Complete");
      
          } else {
      
           progress_text.setText(StringUtils.getDataSize(download.getCurrentFileSize())
             +"/"+
             StringUtils.getDataSize(download.getTotalFileSize()));
      
          }
         }
        }
       };
      
       @Override
       protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        btn_download = (AppCompatButton) findViewById(R.id.btn_download);
        progress = (ProgressBar) findViewById(R.id.progress);
        progress_text = (TextView) findViewById(R.id.progress_text);
      
        registerReceiver();
      
        btn_download.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View view) {
          Intent intent = new Intent(MainActivity.this, DownloadService.class);
          startService(intent);
         }
        });
       }
      
       private void registerReceiver() {
      
        LocalBroadcastManager bManager = LocalBroadcastManager.getInstance(this);
        IntentFilter intentFilter = new IntentFilter();
        intentFilter.addAction(MESSAGE_PROGRESS);
        bManager.registerReceiver(broadcastReceiver, intentFilter);
      
       }
      }

      關(guān)于“Retrofit+Rxjava如何實現(xiàn)帶進(jìn)度顯示的下載文件”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


      網(wǎng)頁名稱:Retrofit+Rxjava如何實現(xiàn)帶進(jìn)度顯示的下載文件
      網(wǎng)頁網(wǎng)址:http://www.ef60e0e.cn/article/iesepp.html
      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区
      1. <ul id="0c1fb"></ul>

        <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
        <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

        从化市| 瓮安县| 灵武市| 耒阳市| 兴国县| 奉节县| 清流县| 扶绥县| 星座| 紫金县| 大邑县| 巴塘县| 肇庆市| 云浮市| 遂平县| 鄂温| 肇庆市| 攀枝花市| 江永县| 哈密市| 黑龙江省| 太仆寺旗| 聂荣县| 思茅市| 建始县| 洞口县| 曲阳县| 宝鸡市| 龙岩市| 吉首市| 敖汉旗| 定结县| 乌鲁木齐县| 万安县| 安泽县| 永德县| 兰考县| 诸暨市| 海林市| 敖汉旗| 肃宁县|