本篇文章給大家分享的是有關(guān)Android中怎么利用WebView實(shí)現(xiàn)文件下載功能,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來(lái)看看吧。
10余年的四川網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。成都全網(wǎng)營(yíng)銷的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整四川建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無(wú)論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)從事“四川網(wǎng)站設(shè)計(jì)”,“四川網(wǎng)站推廣”以來(lái),每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
方法1,自定義下載操作
1. 先來(lái)布局
2. 實(shí)現(xiàn)自定義下載工具操作異步線程類:
public class DownLoadThread extends Thread { private String downLoadUrl; private Context context; private FileOutputStream out = null; private File downLoadFile = null; private File sdCardFile = null; private InputStream in = null; public DownLoadThread(String downLoadUrl, Context context) { super(); this.downLoadUrl = downLoadUrl; this.context = context; } @Override public void run() { try { URL httpUrl = new URL(downLoadUrl); HttpURLConnection conn = (HttpURLConnection) httpUrl.openConnection(); conn.setDoInput(true);// 如果打算使用 URL 連接進(jìn)行輸入,則將 DoInput 標(biāo)志設(shè)置為 true;如果不打算使用,則設(shè)置為 false。默認(rèn)值為 true。 conn.setDoOutput(true);// 如果打算使用 URL 連接進(jìn)行輸出,則將 DoOutput 標(biāo)志設(shè)置為 true;如果不打算使用,則設(shè)置為 false。默認(rèn)值為 false。 in = conn.getInputStream(); if (!Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) { Toast.makeText(context, "SD卡不可用!", Toast.LENGTH_SHORT).show(); return; } downLoadFile = Environment.getExternalStorageDirectory(); sdCardFile = new File(downLoadFile, "download.apk"); out = new FileOutputStream(sdCardFile); byte[] b = new byte[1024]; int len; while ((len = in.read(b)) != -1) { out.write(b, 0, len); } if (out != null) { out.close(); } if (in != null) { in.close(); } } catch (Exception e) { e.printStackTrace(); } } }
3. 文件下載
public class MainActivity extends Activity { private WebView test_wv; private String downLoadUrl = "http://as.baidu.com/a/rank?cid=101&s=1&f=web_alad"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); this.test_wv = (WebView) findViewById(R.id.test_wv); test_wv.loadUrl(downLoadUrl); test_wv.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); return super.shouldOverrideUrlLoading(view, url); } }); //要實(shí)現(xiàn)WebView文件下載,實(shí)現(xiàn)這個(gè)監(jiān)聽就ok test_wv.setDownloadListener(new DownloadListener() { @Override public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) { Log.v("ldm", url); if (url.endsWith(".apk")) {//判斷是否是.apk結(jié)尾的文件路徑 new DownLoadThread(url, MainActivity.this).start(); } } }); } }
方法2:通過系統(tǒng)自身下載方式下載(會(huì)在通知欄顯示下載進(jìn)度條)
只需要把這個(gè)方法改寫如下:
test_wv.setDownloadListener(new DownloadListener() { @Override public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) { Log.v("ldm", url); Uri uri=Uri.parse(url); Intent intent=new Intent(Intent.ACTION_VIEW, uri); startActivity(intent); } });
以上就是Android中怎么利用WebView實(shí)現(xiàn)文件下載功能,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。