Android文件下载

最近在复习服务,想想还是写个综合的点的案例来实现。<文件下载>

分析:
异步下载AsyncTask
后台服务开启下载
使用Activity显示界面
开撸
写一个接口,记录下载的状态。
  public interface DownloadListener {
        /**下载进度*/
     void onProgress(int progress);

        /**下载成功*/
     void onSuccess();

        /**下载失败 */
     void onFailed();

        /**下载暂停 */
     void onPaused();

        /**下载取消 */
      void onCanceled();
}
开启异步线程AsyncTask下载文件
AsyncTask,泛型参数,需要URL,String字符串,来下载文件;在下载过程中需要显示在界面进度,这个进度使用Integer类型;下载完毕之后,也需要一个状态来记录,这个状态也使用Integer来表示。
  public class DownloadTask extends AsyncTask<String,Integer,Integer> {

       // 定义四个int类型值,来记录文件下载的状态。
       public static final int TYPE_SUCCESS = 0;       //成功
       public static final int TYPE_FAILED = 1;        //失败
       public static final int TYPE_PAUSED = 2;        //暂停
       public static final int TYPE_CANCELED = 3;      //取消


       private boolean isCanceled = false;
       private boolean isPaused = false;
       private int lastProgress;

       private DownloadListener downloadListener;
       public DownloadTask(DownloadListener mDownloadListener){
         this.downloadListener = mDownloadListener;
       }


      /**
         * 任务开始执行该方法,可以做界面的初始化操作。
      * */
        @Override
      protected void onPreExecute() {
         super.onPreExecute();
      }

      /**
       * 开始执行后台任务,该方法中的所有代码都在自线程中操作。
      * */
       @Override
     protected Integer doInBackground(String... params) {
       InputStream is = null;      //从服务区读取数据
       RandomAccessFile savedFile = null ;
       File file = null;
       try{
            long downloadedLength = 0;   // 记录已下载的文件长度
            String downloadUrl = params[0];
            String fileName = 
            downloadUrl.substring(downloadUrl.lastIndexOf("/")); //获取文件的名称
                            // 通过SD卡,获取内部存储的路径
            String directory Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS).getPath();
            file  = new File(directory + fileName);
            if(file .exists()) {    // 如果文件已经存在,获取文件已经下载的进度
               downloadedLength =  file.length();
            }
            long contentLength = getContentLength(downloadUrl);
            if (contentLength == 0) {
                return TYPE_FAILED;
            }else if (contentLength == downloadedLength){   // 如果下载的文件的大小 == 源文件的大小 那么说明下载成功;
            return  TYPE_SUCCESS;
        }

        // 以上排除成功和失败,那么还有两种情况,暂停和取消, 这就需要断点续传
        OkHttpClient client = new OkHttpClient();
        Request request = new Request.Builder()
                            //断点下载指定从哪个字节开始下载
                            .addHeader("RANGE","bytes="+ downloadedLength +"-")
                            .url(downloadUrl)
                            .build();
        Response response = client.newCall(request).execute();
        if (response != null) {
            is = response.body().byteStream();
            savedFile = new RandomAccessFile(file,"rw");
            savedFile.seek(downloadedLength);   //跳过已经下载好的字节;
            byte [] b = new byte[1024];
            int total = 0;      // 全部的
            int len = 0;
            while((len = is.read(b))!= -1) {
                if(isCanceled) {
                    return TYPE_CANCELED;       //取消
                }else if (isPaused) {
                    return TYPE_PAUSED;         //暂停
                }else {
                    total += len;
                    savedFile.write(b,0,len);

                    // 计算已经下载好的百分比
                    int progress = (int) ((total + downloadedLength) * 100 / contentLength);
                    publishProgress(progress);  //更新界面
                }
            }
            response.body().close();
            return TYPE_SUCCESS;
        }
    }catch (Exception e) {
        e.printStackTrace();
    }finally {
        try{
            if (is != null) {
                is.close();
            }
            if (savedFile != null) {
                savedFile.close();
            }
            if (isCanceled && file != null) {
                file.delete();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    return TYPE_FAILED;
}


/**
 * 获取下载文件的长度
 * */
private long getContentLength(String downloadUrl) throws IOException {
    OkHttpClient clinent = new OkHttpClient();
    Request request = new Request.Builder()
            .url(downloadUrl)
            .build();
    Response response = clinent.newCall(request).execute();
    if (response != null && response.isSuccessful()) {
        long contentLength = response.body().contentLength();
        response.close();
        return contentLength;
    }
    return 0;
}

/**
 * 任务执行过程中,要更新UI,通过调用publishProgress()方法执行该方法、
 * */
@Override
protected void onProgressUpdate(Integer... values) {
    int progress = values[0];
    if (progress > lastProgress) {
        downloadListener.onProgress(progress);
        lastProgress = progress;
    }
}

/**
 * 任务执行完毕 执行该方法,可以做关闭进度条的操作。
 * */
@Override
protected void onPostExecute(Integer integer) {
    switch (integer) {
        case TYPE_SUCCESS:
            downloadListener.onSuccess();
            break;
        case TYPE_FAILED:
            downloadListener.onFailed();
            break;
        case TYPE_CANCELED:
            downloadListener.onCanceled();
            break;
        case TYPE_PAUSED:
            downloadListener.onPaused();
            break;
    }
}

public void pauseDownload(){
    isPaused = true;
}

public void cancelDownload(){
    isCanceled = true;
}}}
开启服务下载文件
 public class DownloadService extends Service {
    private DownloadTask downloadtask;
    private DownloadListener listener = new DownloadListener() {
    @Override
    public void onProgress(int progress) {
        // 显示progress 进度
        getNotificationManager().notify(1,getNotification("DOWNLOAD...",progress));
    }

    @Override
    public void onSuccess() {
        // 下载成功后移除异步任务,并关闭前台通知;
        downloadtask = null;
        stopForeground(true);   //下载成功之后将前台服务通知关闭,并创建一个下载成功的通知。

        getNotificationManager().notify(1,getNotification("DOWNLOAD_SUCCESS",-1));

        Toast.makeText(DownloadService.this,"下载成功",Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onFailed() {
        downloadtask = null;
        // 下载失败时将前台任务关闭,并创建一个下载失败的通知;
        stopForeground(true);

        getNotificationManager().notify(1,getNotification("DOWNLOAD_FAILED",-1));
        Toast.makeText(DownloadService.this,"下载失败",Toast.LENGTH_SHORT).show();

        Log.e("----onFailed------","下载失败了~~~~");
        stopForeground(true);
    }

    @Override
    public void onPaused() {
        downloadtask = null;
        Toast.makeText(DownloadService.this,"暂停下载",Toast.LENGTH_SHORT).show();
    }

    @Override
    public void onCanceled() {
        downloadtask = null;
        stopForeground(true);   // 取消下载
        Toast.makeText(DownloadService.this,"取消下载",Toast.LENGTH_SHORT).show();
        Log.e("~~~~~~~~~~··","onCanceled");
    }
};
private String downloadUrl ;
private DownloadBinder mBinder = new DownloadBinder();
@Nullable
@Override
public IBinder onBind(Intent intent) {
    return mBinder;
}

public class DownloadBinder extends Binder{
    /**
     * 开始下载
     * */
    public void startDownload(String url) {
        if (downloadtask == null) {
            downloadUrl = url;
            downloadtask = new DownloadTask(listener);
            downloadtask.execute(downloadUrl);  //执行异步加载

            startForeground(1,getNotification("Download",0));   //开启前台服务;
            Toast.makeText(DownloadService.this,"开始下载啦",Toast.LENGTH_SHORT).show();
        }
    }

    /**
     * 暂停下载
     * */
    public void pauseDownload(){
        if(downloadtask != null) {
            downloadtask.pauseDownload();
        }
    }

    /**
     * 取消下载
     * */
    public void cancelDownload(){
        if (downloadtask != null) {
            downloadtask.cancelDownload();
        }else {
            if(downloadUrl != null) {
                // 取消下载时,将文件删除并关闭通知
                String fileName = downloadUrl.substring(downloadUrl.lastIndexOf("/"));
                String directory = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS).getPath();
                File file = new File(directory+fileName);
                if (file . exists()) {
                    file.delete();
                }

              getNotificationManager().cancel(1);   //关闭通知
            }
        }

        Log.e("---cancelDownload-","取消~~~~");

    }
}

private NotificationManager getNotificationManager(){
    return (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
}


// 显示对话框;
private Notification getNotification(String title, int progress) {
    Intent intent = new Intent(DownloadService.this,MainActivity.class);
    PendingIntent pi = PendingIntent.getActivity(DownloadService.this,0,intent,0);
    NotificationCompat.Builder builder = new NotificationCompat.Builder(DownloadService.this);
    builder.setSmallIcon(R.mipmap.ic_launcher);
    builder.setContentTitle(title);
    if (progress > 0) {
        builder.setContentText(progress+"%");
        builder.setProgress(100,progress,false);
    }
    builder.setContentIntent(pi);
    return builder.build();
}

}

Activity显示下载进度
public class DownloadActivity extends AppCompatActivity implements View.OnClickListener{
   private String tag = "DownloadActivity";
   private DownloadService.DownloadBinder binder;
   private ServiceConnection connection = new ServiceConnection() {

       @Override       // 服务连接
       public void onServiceConnected(ComponentName name, IBinder service) {
           binder = (DownloadService.DownloadBinder) service;
       }

       @Override       //服务断开连接
       public void onServiceDisconnected(ComponentName name) {

       }
   };

   @Override
   public void onCreate(@Nullable Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.act_download);
       initService();
       initView();
   }

   private void initService() {
       Intent intent = new Intent(DownloadActivity.this, DownloadService.class);
       startService(intent);       // 开启服务
       bindService(intent,connection,BIND_AUTO_CREATE);    // 绑定服务

       // 请求权限
       if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
           ActivityCompat.requestPermissions(this,new String [] {Manifest.permission.WRITE_EXTERNAL_STORAGE},1);
       }
   }

   @Override
   public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
      switch (requestCode) {
          case 1:
              if (grantResults.length >0 && grantResults[0]!= PackageManager.PERMISSION_GRANTED) {
                  Toast.makeText(this,"拒绝权限无法使用程序",Toast.LENGTH_SHORT).show();
                  finish();
              }
              break;
      }
   }

   private void initView() {
       findViewById(R.id.button_start).setOnClickListener(this);
       findViewById(R.id.button_stop).setOnClickListener(this);
       findViewById(R.id.button_canceled).setOnClickListener(this);
   }

   @Override
   public void onClick(View v) {
       if (binder == null) {
           Log.e(tag,"------binder==null-------");
           return;
       }
       switch (v.getId()) {
           case R.id.button_start:
                   String url = "https://raw.githubusercontent.com/goulindev/eclipse/master/eclipse-inst-win64.exe";
                   binder.startDownload(url);
               break;
           case R.id.button_stop:
                   binder.pauseDownload();
               break;
           case R.id.button_canceled:
                   binder.cancelDownload();
               break;
       }
   }



   @Override
   protected void onDestroy() {
       super.onDestroy();
       unbindService(connection);
       stopService(new Intent(this,DownloadService.class));
   }
}

至此,结合服务,异步下载的文件下载案列就完成了 ^ _ ^ 。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,294评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,493评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,790评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,595评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,718评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,906评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,053评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,797评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,250评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,570评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,711评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,388评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,018评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,796评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,023评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,461评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,595评论 2 350

推荐阅读更多精彩内容