Android实现文件下载进度显示功能

Android实现文件下载进度显示功能,第1张

概述和大家一起分享一下学习经验,如何实现Android文件下载进度显示功能,希望对广大初学者有帮助。

和大家一起分享一下学习经验,如何实现AndroID文件下载进度显示功能,希望对广大初学者有帮助。
先上效果图:

  

上方的蓝色进度条,会根据文件下载量的百分比进行加载,中部的文本控件用来现在文件下载的百分比,最下方的ImageVIEw用来展示下载好的文件,项目的目的就是动态向用户展示文件的下载量。

下面看代码实现:首先是布局文件:

<relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"  xmlns:tools="http://schemas.androID.com/tools"  androID:layout_wIDth="match_parent"  androID:layout_height="match_parent"  tools:context="${relativePackage}.${activityClass}" >   <Progressbar    androID:ID="@+ID/progressbar"        androID:layout_wIDth="match_parent"    androID:layout_height="wrap_content"    androID:max="100" />   <TextVIEw    androID:ID="@+ID/textVIEw"    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content"    androID:layout_below="@+ID/progressbar"    androID:layout_centerHorizontal="true"    androID:layout_margintop="24dp"    androID:text="TextVIEw" />   <ImageVIEw    androID:ID="@+ID/imageVIEw"    androID:layout_margintop="24dp"    androID:layout_wIDth="match_parent"    androID:layout_height="wrap_content"    androID:layout_alignParentBottom="true"    androID:layout_below="@+ID/textVIEw"    androID:contentDescription="@string/app_name"    androID:src="@drawable/ic_launcher" /> </relativeLayout>

接下来的主Activity代码:

public class MainActivity extends Activity {   Progressbar pb;   TextVIEw tv;  ImageVIEw imageVIEw;  int fileSize;    int downLoadfileSize;    String fileEx,fileNa,filename;   //用来接收线程发送来的文件下载量,进行UI界面的更新  private Handler handler = new Handler(){      @OverrIDe      public voID handleMessage(Message msg)      {//定义一个Handler,用于处理下载线程与UI间通讯     if (!Thread.currentThread().isInterrupted())     {        switch (msg.what)      {         case 0:          pb.setMax(fileSize);       case 1:          pb.setProgress(downLoadfileSize);          int result = downLoadfileSize * 100 / fileSize;          tv.setText(result + "%");          break;         case 2:          Toast.makeText(MainActivity.this,"文件下载完成",Toast.LENGTH_SHORT).show();         fileinputStream fis = null;        try {          fis = new fileinputStream(Environment.getExternalStorageDirectory() + file.separator + "/ceshi/" + filename);        } catch (fileNotFoundException e) {          e.printstacktrace();        }        Bitmap bitmap = BitmapFactory.decodeStream(fis); ///把流转化为Bitmap图        imageVIEw.setimageBitmap(bitmap);        break;            case -1:          String error = msg.getData().getString("error");        Toast.makeText(MainActivity.this,error,Toast.LENGTH_SHORT).show();          break;        }       }       super.handleMessage(msg);      }     };     @OverrIDe  protected voID onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentVIEw(R.layout.activity_main);    pb=(Progressbar)findVIEwByID(R.ID.progressbar);    tv=(TextVIEw)findVIEwByID(R.ID.textVIEw);    imageVIEw = (ImageVIEw) findVIEwByID(R.ID.imageVIEw);    tv.setText("0%");    new Thread(){      public voID run(){        try {          //下载文件,参数:第一个URL,第二个存放路径          down_file("http://cdnq.duitang.com/uploads/item/201406/15/20140615203435_ABQMa.jpeg",Environment.getExternalStorageDirectory() + file.separator + "/ceshi/");        } catch (ClIEntProtocolException e) {          // Todo auto-generated catch block          e.printstacktrace();        } catch (IOException e) {          // Todo auto-generated catch block          e.printstacktrace();        }       }      }.start();       }       /**   * 文件下载   * @param url:文件的下载地址   * @param path:文件保存到本地的地址   * @throws IOException   */  public voID down_file(String url,String path) throws IOException{      //下载函数         filename=url.substring(url.lastIndexOf("/") + 1);    //获取文件名      URL myURL = new URL(url);    URLConnection conn = myURL.openConnection();      conn.connect();      inputStream is = conn.getinputStream();      this.fileSize = conn.getContentLength();//根据响应获取文件大小      if (this.fileSize <= 0) throw new RuntimeException("无法获知文件大小 ");      if (is == null) throw new RuntimeException("stream is null");    file file1 = new file(path);    file file2 = new file(path+filename);    if(!file1.exists()){      file1.mkdirs();    }    if(!file2.exists()){      file2.createNewfile();    }    fileOutputStream fos = new fileOutputStream(path+filename);      //把数据存入路径+文件名      byte buf[] = new byte[1024];    downLoadfileSize = 0;      sendMsg(0);      do{        //循环读取        int numread = is.read(buf);        if (numread == -1)        {         break;        }        fos.write(buf,numread);        downLoadfileSize += numread;           sendMsg(1);//更新进度条      } while (true);          sendMsg(2);//通知下载完成           try{        is.close();      } catch (Exception ex) {        Log.e("tag","error: " + ex.getMessage(),ex);      }       }       //在线程中向Handler发送文件的下载量,进行UI界面的更新  private voID sendMsg(int flag)    {      Message msg = new Message();      msg.what = flag;      handler.sendMessage(msg);    }       }

最后一定要注意的是:在AndroIDManifest.xml文件中,添加访问网络的权限

<uses-permission androID:name="androID.permission.INTERNET"/>

到这里关于AndroID文件下载动态显示下载进度的内容就为大家分享完毕,希望对大家的学习有所帮助。

总结

以上是内存溢出为你收集整理的Android实现文件下载进度显示功能全部内容,希望文章能够帮你解决Android实现文件下载进度显示功能所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1149613.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存