這期內(nèi)容當中小編將會給大家?guī)碛嘘P(guān)怎么在Android中利用WebView實現(xiàn)一個文件下載功能,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、重慶小程序開發(fā)、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了黃島免費建站歡迎大家使用!
1.調(diào)用其它瀏覽器下載文件:
這個很簡單,我們只需為WebView設(shè)置setDownloadListener,然后重寫DownloadListener的 onDownloadStart,然后在里面寫個Intent,然后startActivity對應(yīng)的Activity即可!
關(guān)鍵代碼如下:
wView.setDownloadListener(new DownloadListener(){ @Override public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) { Log.e("HEHE","開始下載"); Uri uri = Uri.parse(url); Intent intent = new Intent(Intent.ACTION_VIEW,uri); startActivity(intent); } });
如果你手機內(nèi)存在多個瀏覽器的話,會打開一個對話框供你選擇其中一個瀏覽器進行下載~
2.自己寫線程下載文件
當然,你可能不想把下載文件放到默認路徑下,或者想自己定義文件名等等,你都可以自己來寫 一個線程來下載文件,實現(xiàn)示例代碼如下:
核心代碼:
我們自己另外寫一個下載的線程類:
DownLoadThread.java
/** * Created by Jay on 2015/9/14 0014. */ public class DownLoadThread implements Runnable { private String dlUrl; public DownLoadThread(String dlUrl) { this.dlUrl = dlUrl; } @Override public void run() { Log.e("HEHE", "開始下載~~~~~"); InputStream in = null; FileOutputStream fout = null; try { URL httpUrl = new URL(dlUrl); HttpURLConnection conn = (HttpURLConnection) httpUrl.openConnection(); conn.setDoInput(true); conn.setDoOutput(true); in = conn.getInputStream(); File downloadFile, sdFile; if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) { Log.e("HEHE","SD卡可寫"); downloadFile = Environment.getExternalStorageDirectory(); sdFile = new File(downloadFile, "csdn_client.apk"); fout = new FileOutputStream(sdFile); }else{ Log.e("HEHE","SD卡不存在或者不可讀寫"); } byte[] buffer = new byte[1024]; int len; while ((len = in.read(buffer)) != -1) { fout.write(buffer, 0, len); } } catch (Exception e) { e.printStackTrace(); } finally { if (in != null) { try { in.close(); } catch (IOException e) { e.printStackTrace(); } } if (fout != null) { try { fout.close(); } catch (IOException e) { e.printStackTrace(); } } } Log.e("HEHE", "下載完畢~~~~"); } }
然后MainActivity.java中創(chuàng)建并啟動該線程:
wView.setDownloadListener(new DownloadListener(){ @Override public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) { Log.e("HEHE","onDownloadStart被調(diào)用:下載鏈接:" + url); new Thread(new DownLoadThread(url)).start(); } });
運行結(jié)果:
我們打開SD卡可以看到,下載好的文件已經(jīng)安安靜靜地躺在SD卡里了:
注意事項:
好的,另外,別忘了寫SD卡的讀寫權(quán)限以及Internet訪問網(wǎng)絡(luò)的權(quán)限:
上述就是小編為大家分享的怎么在Android中利用WebView實現(xiàn)一個文件下載功能了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。