91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

android webview能加載本地文件嗎

小樊
82
2024-11-16 05:06:26
欄目: 編程語言

Android WebView 本身不支持直接加載本地文件,因為出于安全原因,WebView 不允許訪問文件系統。但是,您可以通過以下方法之一將本地文件加載到 WebView 中:

  1. 將文件存儲在應用的 assets 文件夾中,然后使用 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();
}
  1. 將文件存儲在應用的內部或外部存儲中,然后使用 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 中加載本地文件了。

0
富顺县| 淳化县| 巫山县| 安义县| 阜宁县| 册亨县| 卓资县| 双城市| 阜南县| 高邮市| 博客| 仁寿县| 铜梁县| 泗水县| 松原市| 读书| 云阳县| 甘南县| 平利县| 彭泽县| 阿克陶县| 株洲县| 阿尔山市| 榆林市| 大宁县| 沈丘县| 靖西县| 通渭县| 仪征市| 卢湾区| 孟州市| 镇雄县| 稻城县| 安新县| 出国| 江城| 合作市| 类乌齐县| 宁强县| 兴仁县| 溆浦县|