WebView在显示中文时会出现乱码的问题,编码方式改为GBK或gb2312都不能解决问题。
Android 官方文档中对于加载HTML,给出了2中方法:
方法1 :
//Loads the given data into this WebView using a 'data' scheme URL.
void loadData(String data, String mimeType, String encoding)
方法2: //Loads the given data into this WebView, using baseUrl as the base URL for the content.
void loadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl)
尝试的结果是:
第一种方法无论怎么改,中文都是乱码。
第二种方法至少这样用时,中文不是乱码。
webView.loadDataWithBaseURL(null,data, "text/html", "utf-8", null);
网友评论