无法在 Android WebView 中加载本地 HTML 文件

发布于 2024-11-16 08:17:10 字数 502 浏览 4 评论 0原文

我有一个网络视图。我想加载一个名为 helloworld.html 的本地 HTML 文件。它位于我的drawable-hdpi 文件夹中。

这是我的代码:

webView = (WebView) findViewById(R.id.webView);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("file:///android_asset/helloworld.html");

我收到浏览器错误:

The webpage at file:///android_asset/helloworld.html could not be loaded as the file requested was not found. /android_asset/helloworld.html (no such file or directory)

如何解决?

I have a WebView. I want to load a local HTML file called helloworld.html. It is located in my drawable-hdpi folder.

Here is my code:

webView = (WebView) findViewById(R.id.webView);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("file:///android_asset/helloworld.html");

I get a browser error:

The webpage at file:///android_asset/helloworld.html could not be loaded as the file requested was not found. /android_asset/helloworld.html (no such file or directory)

How can I resolve?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月朦胧 2024-11-23 08:17:10

将 HTML 文件放入 asset 文件夹中。

Put your HTML file in the assets folder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文