我有一个 WebView,我正在从数据库中加载一个字符串。在那个字符串中有一个 ½ 字符,当我在我的设备上查看它时,它显示为 Ȃ½。我尝试使用 utf-8 和 unicode。我还尝试使用 Java 字符串替换搜索 Ȃ 并将其替换为“”,但它没有用。
String description = "½";
WebView webview = (WebView) findViewById(R.id.webview);
webview.loadData(description, "text/html", "utf-8");