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); }}; 這樣,在下載的時候只要發送相應的訊息,即可有相應的提示!不再細寫,希望對你的思路有協助!在這裡僅僅提供一個思路,如果你有更好的想法,歡迎交流!
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.