Python27中Json对中文的处理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python27中Json对中文的处理相关的知识,希望对你有一定的参考价值。

应用场景如下:从api下载数据,json解析,存入字典,定期保存。重启程序需要加载保存的文本。

问题1:json中都是unicode串,存到文本里都是些\u***

解决:关闭ensure_ascii开关

json.dump(pub.listData,fp,ensure_ascii=False)

 

问题2:字典关键字用的数字,从文本load后变为unicode串

解决:

走了一点弯路,网上的解决方法,都是转换,把串转回utf-8,方法是

def byteify(input):

    if isinstance(input, dict):

        return {byteify(key):byteify(value) for key,value in input.iteritems()}

    elif isinstance(input, list):

        return [byteify(element) for element in input]

    elif isinstance(input, unicode):

        return input.encode(‘utf-8‘)

    else:

        return input

 

但发现,json相关的都是unicode,转不胜转。

最后解决方法,还是用unicode存,但是load后,加一个处理,把key转换为数值就行

 

pub.listData=json.load(fp)
     pub.listData={int(k):v for k,v in pub.listData.items()}

 

问题3:编码问题

解决:

    默认情况下,用sys.getdefaultencoding()查看是utf-8

    decode(code):把code转换为unicode

    encode(code):把unicode转换为code

  如果对一个非unicode格式的串,调用encode的话,则会用默认编码转化为unicode,再进行encode。系统默认编码为ascii,所以常常出错

设置默认编码:

在python的Lib\site-packages文件夹下新建一个sitecustomize.py,内容为:

# encoding=utf8 

import sys 

reload(sys) 

sys.setdefaultencoding(‘utf8‘)


以上是关于Python27中Json对中文的处理的主要内容,如果未能解决你的问题,请参考以下文章

将 JSON 数据导入 Python [重复]

python中处理json数据,谢谢!!

使用 python (Jupyter notebook) 对 json 数据进行数据预处理

python爬虫中涉及json数据的处理

无法在 python 3.8 中访问嵌套的 JSON

python 读写json文件(dump, load),以及对json格式的数据处理(dumps, loads)