Android文件下载进度条的实现

main.xml:

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7. <TextView  android:id="@+id/tv"  
  8.     android:layout_width="fill_parent"   
  9.     android:layout_height="wrap_content"   
  10.     android:text=""  
  11.     />  
  12. <ProgressBar android:id="@+id/down_pb"  
  13.     android:layout_width="fill_parent"   
  14.     android:layout_height="wrap_content"  
  15.     android:max="100"  
  16.     style="?android:attr/progressBarStyleHorizontal" mce_style="?android:attr/progressBarStyleHorizontal"  
  17. />  
  18. </LinearLayout>  

 

main.java:

  1. package com.pocketdigi.download;  
  2.    
  3. import java.io.FileOutputStream;  
  4. import java.io.IOException;  
  5. import java.io.InputStream;  
  6. import java.net.URL;  
  7. import java.net.URLConnection;  
  8.    
  9. import org.apache.http.client.ClientProtocolException;  
  10. import android.app.Activity;  
  11. import android.os.Bundle;  
  12. import android.os.Handler;  
  13. import android.os.Message;  
  14. import android.util.Log;  
  15. import android.widget.ProgressBar;  
  16. import android.widget.TextView;  
  17. import android.widget.Toast;  
  18.    
  19. public class main extends Activity {  
  20.     /** Called when the activity is first created. */  
  21.     ProgressBar pb;  
  22.     TextView tv;  
  23.     int   fileSize;  
  24.     int   downLoadFileSize;  
  25.     String fileEx,fileNa,filename;  
  26.     private Handler handler = new Handler()  
  27.       {  
  28.         @Override  
  29.         public void handleMessage(Message msg)  
  30.         {//定义一个Handler,用于处理下载线程与UI间通讯  
  31.           if (!Thread.currentThread().isInterrupted())  
  32.           {  
  33.             switch (msg.what)  
  34.             {  
  35.               case 0:  
  36.                 pb.setMax(fileSize);  
  37.               case 1:  
  38.                 pb.setProgress(downLoadFileSize);  
  39.                 int result = downLoadFileSize * 100 / fileSize;  
  40.                 tv.setText(result + "%");  
  41.                 break;  
  42.               case 2:  
  43.                 Toast.makeText(main.this"文件下载完成"1).show();  
  44.                 break;  
  45.    
  46.               case -1:  
  47.                 String error = msg.getData().getString("error");  
  48.                 Toast.makeText(main.this, error, 1).show();  
  49.                 break;  
  50.             }  
  51.           }  
  52.           super.handleMessage(msg);  
  53.         }  
  54.       };  
  55.     @Override  
  56.     public void onCreate(Bundle savedInstanceState) {  
  57.         super.onCreate(savedInstanceState);  
  58.         setContentView(R.layout.main);  
  59.         pb=(ProgressBar)findViewById(R.id.down_pb);  
  60.         tv=(TextView)findViewById(R.id.tv);  
  61.         new Thread(){  
  62.             public void run(){  
  63.                 try {  
  64.                     down_file("http://wallpaper.pocketdigi.com/upload/1/bigImage/1284565196.jpg","/sdcard/");  
  65.                     //下载文件,参数:第一个URL,第二个存放路径  
  66.                 } catch (ClientProtocolException e) {  
  67.                     // TODO Auto-generated catch block  
  68.                     e.printStackTrace();  
  69.                 } catch (IOException e) {  
  70.                     // TODO Auto-generated catch block  
  71.                     e.printStackTrace();  
  72.                 }  
  73.             }  
  74.         }.start();  
  75.    
  76.    
  77.     }  
  78.     public void down_file(String url,String path) throws IOException{  
  79.         //下载函数        
  80.         filename=url.substring(url.lastIndexOf("/") + 1);  
  81.         //获取文件名  
  82.         URL myURL = new URL(url);  
  83.         URLConnection conn = myURL.openConnection();  
  84.         conn.connect();  
  85.         InputStream is = conn.getInputStream();  
  86.         this.fileSize = conn.getContentLength();//根据响应获取文件大小  
  87.         if (this.fileSize <= 0throw new RuntimeException("无法获知文件大小 ");  
  88.         if (is == nullthrow new RuntimeException("stream is null");  
  89.         FileOutputStream fos = new FileOutputStream(path+filename);  
  90.         //把数据存入路径+文件名  
  91.         byte buf[] = new byte[1024];  
  92.         downLoadFileSize = 0;  
  93.         sendMsg(0);  
  94.         do  
  95.           {  
  96.             //循环读取  
  97.             int numread = is.read(buf);  
  98.             if (numread == -1)  
  99.             {  
  100.               break;  
  101.             }  
  102.             fos.write(buf, 0, numread);  
  103.             downLoadFileSize += numread;  
  104.    
  105.             sendMsg(1);//更新进度条  
  106.           } while (true);  
  107.         sendMsg(2);//通知下载完成  
  108.         try  
  109.           {  
  110.             is.close();  
  111.           } catch (Exception ex)  
  112.           {  
  113.             Log.e("tag""error: " + ex.getMessage(), ex);  
  114.           }  
  115.    
  116.     }  
  117.     private void sendMsg(int flag)  
  118.     {  
  119.         Message msg = new Message();  
  120.         msg.what = flag;  
  121.         handler.sendMessage(msg);  
  122.     }      
  123.    
  124.    


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值