Android webView 中loadData方法加载 带中文时出现乱码_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Android webView 中loadData方法加载 带中文时出现乱码

Android webView 中loadData方法加载 带中文时出现乱码

 2014/4/7 22:54:33  FDA橙皮书  博客园  我要评论(0)
  • 摘要:WebView出现乱码用LoadData方法来解析html的,但是据说这是官方的一个BUG,不能用来解析中文。采用loadDataWithBaseURL的方法,其中codeingType设置为utf-8就OK了。loadDataWithBaseURL如果单纯显示文字的话可以写webView.loadDataWithBaseURL(null,string,"text/html","utf-8",null);如果要显示图片可以写webView.loadDataWithBaseURL(baseUrl
  • 标签:android 方法 Web view
class="best-text mb-10">             WebView出现乱码
LoadData方法来解析html的,但是据说这是官方的一个BUG,不能用来解析中文。

采用loadDataWithBaseURL的方法,其中codeingType设置为utf-8就OK了。
loadDataWithBaseURL
如果单纯显示文字的话可以写
webView.loadDataWithBaseURL(null, string, "text/html", "utf-8", null);
如果要显示图片
可以写webView.loadDataWithBaseURL(baseUrl, string, "text/html", "utf-8", null); 其中baseUrl为你存储照片的路径。
发表评论
用户名: 匿名