我的应用程序加载位于getFilesDir()
via下的本地 html 文件WebView#loadUrl()
。
之前targetSdkVersion = 29
,下面的代码正在工作。
copyAssetsFile(this, "sample.html", getFilesDir().getAbsolutePath());
webView.getSettings().setJavaScriptEnabled(true);
String url = "file://" + getFilesDir().getAbsolutePath() + "/sample.html";
webView.loadUrl(url);
}
private static void copyAssetsFile(Context context, String fileName, String directoryPath) {
try {
InputStream inputStream = context.getResources().getAssets().open(fileName);
FileOutputStream fileOutputStream = new FileOutputStream(
new File(directoryPath, fileName), false);
byte[] buffer = new byte[1024];
int length = 0;
while ((length = inputStream.read(buffer)) >= 0) {
fileOutputStream.write(buffer, 0, length);
}
fileOutputStream.close();
inputStream.close();
完整的例子在这里。
但是,更改后它不起作用targetSdkVersion = 30
。
- WebView 响应
net::ERR_ACCESS_DINIED
- 可以加载本地 html,如果它位于
android_asset
如何加载本地html文件targetSdkVersion = 30
?
是否更改为被Android FW拒绝?