使用Html.escapeHtml()函数进行转义处理。
在Javascript中,字符串内的特殊字符(如<、>、&等)需要进行转义处理才能正确显示。而在Android Webview中使用Javascript时,该问题变得更加复杂,因为Webview默认使用UTF-8编码,而Javascript的转义字符对应的是ISO-8859-1编码。
为了解决这个问题,可以使用Android SDK中提供的Html.escapeHtml()函数对字符串进行转义处理,示例代码如下:
String unescapedString = "This is an unescaped with &some; special characters";
String escapedString = Html.escapeHtml(unescapedString);
Log.d(TAG, "Escaped string: " + escapedString);
输出结果为:
Escaped string: This is an unescaped
这里,Html.escapeHtml()函数将字符串中的<、>、&字符替换为对应的转义字符<、>、&。
在使用Webview加载Javascript内容时,只需要在Javascript代码前后加上"; webView.loadData(escapedCode, "text/html;charset=UTF-8", null);
这里我们使用Html.escapeHtml()函数将Javascript代码转义为HTML格式并在前后加上script标签。然后使用WebView的loadData()函数加载转义后的HTML内容即可。