webview如何打开本地的html文件

1.打开本包内assets目录下的index.html文件

webview.loadUrl("file:///android_asset/index.html");

2.打开本包内/data/data/pkg/files目录目录下的index.html文件

webview.loadUrl("file:"+getFilesDir()+File.separator+"index.html");

3.打开本包内/data/data/pkg/cache目录目录下的index.html文件

webview.loadUrl("file:"+getCacheDir()+File.separator+"index.html");

4.打开SD卡目录下的index.html文件

webview.loadUrl("file:"+Environment.getExternalStorageDirectory()+File.separator+"index.html");

5.打开本包内SDCard/Android/data/pkg/files/ 目录下的index.html文件

webview.loadUrl("file:"+Context.getExternalFilesDir()+File.separator+"index.html");

6.打开本包内SDCard/Android/data/pkg/cache/ 目录下的index.html文件

webview.loadUrl("file:"+Context.getExternalCacheDir()+File.separator+"index.html");

 

你可能感兴趣的:(android进阶)