Android 파일 다운로드 진행 표시 기능 구현

여러분 과 함께 학습 경험 을 공유 하고 안 드 로 이 드 파일 다운로드 진도 표시 기능 을 어떻게 실현 하 는 지 많은 초보 자 들 에 게 도움 이 되 기 를 바 랍 니 다.
선행 효과 도:

위의 파란색 진도 바 는 파일 다운 로드 량 의 백분율 에 따라 불 러 옵 니 다.중부 텍스트 컨트롤 은 현재 파일 다운로드 의 백분율 로 사용 되 며,맨 아래 이미지 뷰 는 다운 로드 된 파일 을 보 여 줍 니 다.프로젝트 의 목적 은 사용자 에 게 파일 다운 로드 량 을 동적 으로 보 여 주 는 것 입 니 다.
다음은 코드 구현:우선 레이아웃 파일:

<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"
    style="?android:attr/progressBarStyleHorizontal"
    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, 0, 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"/>
여기 서 안 드 로 이 드 파일 다운로드 에 대한 동적 디 스 플레이 다운로드 진행 상황 에 대한 내용 을 공유 하 였 습 니 다.여러분 의 학습 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기