Android WebView 本身不支持直接加載本地文件,因為出于安全原因,WebView 不允許訪問文件系統。但是,您可以通過以下方法之一將本地文件加載到 WebView 中:
AssetManager
從 assets 文件夾中加載文件。例如,假設您有一個名為 example.html
的文件位于 assets
文件夾中,您可以使用以下代碼將其加載到 WebView 中:try {
InputStream inputStream = getAssets().open("example.html");
byte[] buffer = new byte[inputStream.available()];
inputStream.read(buffer);
inputStream.close();
String htmlContent = new String(buffer, StandardCharsets.UTF_8);
webView.loadDataWithBaseURL(null, htmlContent, "text/html", "utf-8", null);
} catch (IOException e) {
e.printStackTrace();
}
FileProvider
獲取文件的 URI,并將 URI 加載到 WebView 中。例如,假設您有一個名為 example.html
的文件位于應用的內部存儲中,您可以使用以下代碼將其加載到 WebView 中:首先,在 AndroidManifest.xml
文件中添加以下權限:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
然后,使用以下代碼加載文件:
File file = new File(getFilesDir(), "example.html");
Uri uri = FileProvider.getUriForFile(this, getApplicationContext().getPackageName() + ".provider", file);
webView.loadUrl("file://" + uri.getPath());
請注意,您需要在 AndroidManifest.xml
文件中添加一個 <provider>
元素,并設置適當的權限和路徑:
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"/>
</provider>
最后,在 res/xml
文件夾中創建一個名為 file_paths.xml
的文件,并添加以下內容:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="files" path="."/>
</paths>
這樣,您就可以在 Android WebView 中加載本地文件了。