首页 > 代码库 > WebView 乱码

WebView 乱码

//WebView里显示加载一段带日语的HTML时,使用webview.loadData(str,"text/html","utf-8");//出现乱码,加上设置webview.getsettings().setdefaultEncode("utf-8")//都没有效果。解决方案://采用loadDataWithBaseURL(null,data, "text/html", "utf-8",null);

 

WebView 乱码