- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码在 android 9 以下运行得很好,但在 android 9 中,我在加载资源时遇到 webView 问题,它向我显示错误消息:
“网页不可用网页位于 data:text/html; charset=utf-8;charset=utf-8;base64,无法加载,因为:net::ERR_INVALID_RESPONSE"
我认为问题出在 android 9 中的 UTF8 上。我发现这个:
In Android 9, the UTF-8 decoder for Java language is stricter and follows the Unicode standard.
在 android-9.0-migration https://developer.android.com/about/versions/pie/android-9.0-migration
我的代码是:
public void loadResourcePage() {
loadDataWithBaseURL(basePath, "<html><body><p> some text </p></body></html>", "text/html", "UTF-8", null); }
最佳答案
The documents at this page (https://developer.android.com/about/versions/pie/android-9.0-migration) mention that:
In Android 9, the UTF-8 decoder for Java language is stricter and follows the Unicode standard.
So try converting the UTF-8 into Base64 and use loadData()
try {
String base64 = null;
base64 = android.util.Base64.encodeToString(lecureHtmlData.getBytes("UTF-8"),
android.util.Base64.DEFAULT);
wvLecture.loadData(base64, "text/html; charset=utf-8", "base64");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
关于java - 在 android 9 中加载 webView 时出现 ERR_INVALID_RESPONSE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56832101/
我有一个脚本可以创建 Excel 文件并将其导出。这在 PHP5.6 中运行良好,但自从升级到 PHP7.0 后,它就不再工作了。 我发现了几个相关的问题,人们建议安装 php7.0-zip,但这并没
这是我的代码: public function downloadexcel($requestId) { $this->loadModel('MaterialsRequest'); $
当以编程方式(通过 PHP)在浏览器中生成 PDF 时,渲染的 PDF 在 Firefox 和 Safari 中都可以正常显示,但 Chrome 会返回 ERR_INVALID_RESPONSE。它是
我的代码在 android 9 以下运行得很好,但在 android 9 中,我在加载资源时遇到 webView 问题,它向我显示错误消息: “网页不可用网页位于 data:text/html; ch
我无法以 xls 或 xlsx 格式下载/导出,只能以 csv 格式下载/导出 $data = Orders::get(); $xls = Excel::create('Orders', functi
我是一名优秀的程序员,十分优秀!