Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 使用Android系統提供的DownloadManager來下載文件

使用Android系統提供的DownloadManager來下載文件

編輯:關於Android編程

在android2.3以後android系統提供了一個系統組件來供其他app調用來下載東西,使用起來非常方便。

例如我們可以拿來下載app的新版本apk,同時在同時注冊一個廣播接收器來接收下載完成時DownloadManager發出的的廣播,然後自動安裝程序。

SDK在API Level 9中加入了DownloadManager服務,可以將長時間的下載任務交給系統,完全由系統管理。

直接看實例代碼:

package com.hebaijun.downloadtest; 
 
import java.io.UnsupportedEncodingException; 
import java.net.URLEncoder; 
 
import android.app.Activity; 
import android.app.DownloadManager; 
import android.app.DownloadManager.Request; 
import android.content.BroadcastReceiver; 
import android.content.Context; 
import android.content.Intent; 
import android.content.IntentFilter; 
import android.content.SharedPreferences; 
import android.database.Cursor; 
import android.net.Uri; 
import android.os.Bundle; 
import android.preference.PreferenceManager; 
import android.util.Log; 
import android.webkit.MimeTypeMap; 
 
public class DownloadTestActivity extends Activity { 
  private DownloadManager downloadManager; 
  private SharedPreferences prefs; 
  private static final String DL_ID = "downloadId"; 
  /** Called when the activity is first created. */ 
  @Override 
  public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
    downloadManager = (DownloadManager)getSystemService(DOWNLOAD_SERVICE); 
    prefs = PreferenceManager.getDefaultSharedPreferences(this);  
  } 
  @Override 
  protected void onPause() { 
    // TODO Auto-generated method stub 
    super.onPause(); 
    unregisterReceiver(receiver); 
  } 
  @Override 
  protected void onResume() { 
    // TODO Auto-generated method stub 
    super.onResume(); 
    if(!prefs.contains(DL_ID)) {  
      String url = "http://10.0.2.2/android/film/G3.mp4"; 
      //開始下載  
      Uri resource = Uri.parse(encodeGB(url));  
      DownloadManager.Request request = new DownloadManager.Request(resource);  
      request.setAllowedNetworkTypes(Request.NETWORK_MOBILE | Request.NETWORK_WIFI);  
      request.setAllowedOverRoaming(false);  
      //設置文件類型 
      MimeTypeMap mimeTypeMap = MimeTypeMap.getSingleton(); 
      String mimeString = mimeTypeMap.getMimeTypeFromExtension(MimeTypeMap.getFileExtensionFromUrl(url)); 
      request.setMimeType(mimeString); 
      //在通知欄中顯示  
      request.setShowRunningNotification(true); 
      request.setVisibleInDownloadsUi(true); 
      //sdcard的目錄下的download文件夾 
      request.setDestinationInExternalPublicDir("/download/", "G3.mp4"); 
      request.setTitle("移動G3廣告");  
      long id = downloadManager.enqueue(request);  
      //保存id  
      prefs.edit().putLong(DL_ID, id).commit();  
    } else {  
      //下載已經開始,檢查狀態 
      queryDownloadStatus();  
    }  
 
    registerReceiver(receiver, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE)); 
  } 
   
  /** 
   * 如果服務器不支持中文路徑的情況下需要轉換url的編碼。 
   * @param string 
   * @return 
   */ 
  public String encodeGB(String string) 
  { 
    //轉換中文編碼 
    String split[] = string.split("/"); 
    for (int i = 1; i < split.length; i++) { 
      try { 
        split[i] = URLEncoder.encode(split[i], "GB2312"); 
      } catch (UnsupportedEncodingException e) { 
        e.printStackTrace(); 
      } 
      split[0] = split[0]+"/"+split[i]; 
    } 
    split[0] = split[0].replaceAll("\\+", "%20");//處理空格 
    return split[0]; 
  } 
   
  private BroadcastReceiver receiver = new BroadcastReceiver() {  
    @Override  
    public void onReceive(Context context, Intent intent) {  
      //這裡可以取得下載的id,這樣就可以知道哪個文件下載完成了。適用與多個下載任務的監聽 
      Log.v("intent", ""+intent.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, 0)); 
      queryDownloadStatus();  
    }  
  };  
   
  private void queryDownloadStatus() {  
    DownloadManager.Query query = new DownloadManager.Query();  
    query.setFilterById(prefs.getLong(DL_ID, 0));  
    Cursor c = downloadManager.query(query);  
    if(c.moveToFirst()) {  
      int status = c.getInt(c.getColumnIndex(DownloadManager.COLUMN_STATUS));  
      switch(status) {  
      case DownloadManager.STATUS_PAUSED:  
        Log.v("down", "STATUS_PAUSED"); 
      case DownloadManager.STATUS_PENDING:  
        Log.v("down", "STATUS_PENDING"); 
      case DownloadManager.STATUS_RUNNING:  
        //正在下載,不做任何事情 
        Log.v("down", "STATUS_RUNNING"); 
        break;  
      case DownloadManager.STATUS_SUCCESSFUL:  
        //完成 
        Log.v("down", "下載完成"); 
        break;  
      case DownloadManager.STATUS_FAILED:  
        //清除已下載的內容,重新下載 
        Log.v("down", "STATUS_FAILED"); 
        downloadManager.remove(prefs.getLong(DL_ID, 0));  
        prefs.edit().clear().commit();  
        break;  
      }  
    } 
  } 
} 

最後需要的權限是:

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

如果需要隱藏下載工具的提示和顯示,修改代碼:

request.setShowRunningNotification(false);
request.setVisibleInDownloadsUi(false);

加入下面的權限:

<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION"/>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持本站。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved