本篇文章為大家展示了Android應(yīng)用中實(shí)現(xiàn)文件下載的方法有哪些,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供鄂倫春網(wǎng)站建設(shè)、鄂倫春做網(wǎng)站、鄂倫春網(wǎng)站設(shè)計(jì)、鄂倫春網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、鄂倫春企業(yè)網(wǎng)站模板建站服務(wù),10年鄂倫春做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
一、自己封裝URLConnection 連接請(qǐng)求類
public void downloadFile1() { try{ //下載路徑,如果路徑無效了,可換成你的下載路徑 String url = "http://c.qijingonline.com/test.mkv"; String path = Environment.getExternalStorageDirectory().getAbsolutePath(); final long startTime = System.currentTimeMillis(); Log.i("DOWNLOAD","startTime="+startTime); //下載函數(shù) String filename=url.substring(url.lastIndexOf("/") + 1); //獲取文件名 URL myURL = new URL(url); URLConnection conn = myURL.openConnection(); conn.connect(); InputStream is = conn.getInputStream(); int fileSize = conn.getContentLength();//根據(jù)響應(yīng)獲取文件大小 if (fileSize <= 0) throw new RuntimeException("無法獲知文件大小 "); if (is == null) throw new RuntimeException("stream is null"); File file1 = new File(path); if(!file1.exists()){ file1.mkdirs(); } //把數(shù)據(jù)存入路徑+文件名 FileOutputStream fos = new FileOutputStream(path+"/"+filename); byte buf[] = new byte[1024]; int downLoadFileSize = 0; do{ //循環(huán)讀取 int numread = is.read(buf); if (numread == -1) { break; } fos.write(buf, 0, numread); downLoadFileSize += numread; //更新進(jìn)度條 } while (true); Log.i("DOWNLOAD","download success"); Log.i("DOWNLOAD","totalTime="+ (System.currentTimeMillis() - startTime)); is.close(); } catch (Exception ex) { Log.e("DOWNLOAD", "error: " + ex.getMessage(), ex); } }
這種方式在Android 剛興起的時(shí)候,很少下載封裝框架,就自己封裝了。雖然一般的文件都能下載,但這種方式缺點(diǎn)很多,不穩(wěn)定或者各種各樣的問題會(huì)出現(xiàn)。
二、Android自定的下載管理(會(huì)在notification 顯示下載的進(jìn)度,同時(shí)可以暫停、重新連接等)
private void downloadFile2(){ //下載路徑,如果路徑無效了,可換成你的下載路徑 String url = "http://c.qijingonline.com/test.mkv"; //創(chuàng)建下載任務(wù),downloadUrl就是下載鏈接 DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url)); //指定下載路徑和下載文件名 request.setDestinationInExternalPublicDir("", url.substring(url.lastIndexOf("/") + 1)); //獲取下載管理器 DownloadManager downloadManager= (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE); //將下載任務(wù)加入下載隊(duì)列,否則不會(huì)進(jìn)行下載 downloadManager.enqueue(request); }
這種方式其實(shí)就是交給了Android系統(tǒng)的另一個(gè)app去下載管理。這樣的好處不會(huì)消耗該APP的 CPU資源。缺點(diǎn)是:控制起來很不靈活。
三、使用第三方 okhttp 網(wǎng)絡(luò)請(qǐng)求框架
private void downloadFile3(){ //下載路徑,如果路徑無效了,可換成你的下載路徑 final String url = "http://c.qijingonline.com/test.mkv"; final long startTime = System.currentTimeMillis(); Log.i("DOWNLOAD","startTime="+startTime); Request request = new Request.Builder().url(url).build(); new OkHttpClient().newCall(request).enqueue(new Callback() { @Override public void onFailure(Call call, IOException e) { // 下載失敗 e.printStackTrace(); Log.i("DOWNLOAD","download failed"); } @Override public void onResponse(Call call, Response response) throws IOException { Sink sink = null; BufferedSink bufferedSink = null; try { String mSDCardPath= Environment.getExternalStorageDirectory().getAbsolutePath(); File dest = new File(mSDCardPath, url.substring(url.lastIndexOf("/") + 1)); sink = Okio.sink(dest); bufferedSink = Okio.buffer(sink); bufferedSink.writeAll(response.body().source()); bufferedSink.close(); Log.i("DOWNLOAD","download success"); Log.i("DOWNLOAD","totalTime="+ (System.currentTimeMillis() - startTime)); } catch (Exception e) { e.printStackTrace(); Log.i("DOWNLOAD","download failed"); } finally { if(bufferedSink != null){ bufferedSink.close(); } } } }); }
okhttp是一個(gè)很有名氣的開源框架,目前已經(jīng)很多大公司都直接使用它作為網(wǎng)絡(luò)請(qǐng)求庫(七牛云SDK, 阿里云SDK)。 且里面集成了很多優(yōu)勢(shì),包括 okio (一個(gè)I/O框架,優(yōu)化內(nèi)存與CPU)。
上述內(nèi)容就是Android應(yīng)用中實(shí)現(xiàn)文件下載的方法有哪些,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。