Android 檔案的下載
來源:互聯網
上載者:User
public void downFile(String url, String path, String fileName)throws IOException {if (fileName == null || fileName == "")this.FileName = url.substring(url.lastIndexOf("/") + 1);elsethis.FileName = fileName; // 取得檔案名稱,如果輸入新檔案名稱,則使用新檔案名稱URL Url = new URL(url);URLConnection conn = Url.openConnection();conn.connect();InputStream is = conn.getInputStream();this.fileSize = conn.getContentLength();// 根據響應擷取檔案大小if (this.fileSize <= 0) { // 擷取內容長度為0throw new RuntimeException("無法獲知檔案大小 ");}if (is == null) { // 沒有下載流sendMsg(Down_ERROR);throw new RuntimeException("無法擷取檔案");}FileOutputStream FOS = new FileOutputStream(path + this.FileName); // 建立寫入檔案記憶體流,通過此流向目標寫檔案byte buf[] = new byte[1024];downLoadFilePosition = 0;int numread;while ((numread = is.read(buf)) != -1) {FOS.write(buf, 0, numread);downLoadFilePosition += numread}try {is.close();} catch (Exception ex) {;}} 通過此代碼就可以實現將內容儲存到SD卡等裝置上,當然要使用網路,必須得有網路的存取權限。這個需要自己添加,在這裡不再添加! 上面的代碼沒有實現進度條功能,如果要實現進度條功能,我現在考慮到的就是使用訊息進行發送提示,首先實現一個訊息。 代碼private Handler downloadHandler = new Handler() { // 用於接收訊息,處理進度條@Overridepublic void handleMessage(Message msg) { // 接收到的訊息,並且對接收到的訊息進行處理if (!Thread.currentThread().isInterrupted()) {switch (msg.what) {case DOWN_START:pb.setMax(fileSize); //設定開始長度case DOWN_POSITION:pb.setProgress(downLoadFilePosition); // 設定進度break;case DOWN_COMPLETE:Toast.makeText(DownLoadFileTest.this, "下載完成!", 1).show(); // 完成提示break;case Down_ERROR:String error = msg.getData().getString("下載出錯!");Toast.makeText(DownLoadFileTest.this, error, 1).show();break;}}super.handleMessage(msg); }}; 這樣,在下載的時候只要發送相應的訊息,即可有相應的提示!不再細寫,希望對你的思路有協助!在這裡僅僅提供一個思路,如果你有更好的想法,歡迎交流!