标签:style blog http io ar color sp on div
最近在项目中部署结巴分词的时候遇到了乱码情况,明明是中文,确显示不出来或者显示乱码。解决方案如下。
利用isinstance 来判断是否已经编码,s是出问题的字符串。unicode是没编码
isinstance(s, unicode):
用print 打印,如果结果是true说明没编码。如果是false说明编码了,但是编的码不对
print isinstance(s,unicode)
如果没编码,加入编码
s.encode(‘UTF-8‘)
s.decode(‘utf-8‘).encode(‘gb2312‘)
参考:http://www.jb51.net/article/17560.htm
/********************************
* 本文来自博客 “李博Garvin“
* 转载请标明出处:http://blog.csdn.net/buptgshengod
******************************************/
标签:style blog http io ar color sp on div
原文地址:http://blog.csdn.net/buptgshengod/article/details/41823067