python转json中文乱码_Python实现的json文件读取及中文乱码显示问题解决方法

本文实例讲述了python实现的json文件读取及中文乱码显示问题解决方法。分享给大家供大家参考,具体如下:

city.json文件的内容如下:

{

"cities": [

{

"city": "北京",

"cityid": "101010100"

},

{

"city": "上海",

"cityid": "101020100"

}

]

}

可见,其中包含了中文。

python使用json.loads之后打印中文会出现乱码的问题,解决方法如下:

with open('city.json', 'r') as json_file:

"""

读取该json文件时,先按照gbk的方式对其解码再编码为utf-8的格式

"""

data = json_file.read().decode(encoding='gbk').encode(encoding='utf-8')

print type(data) # type(data) = 'str'

result = json.loads(data)

new_result = json.dumps(result,ensure_ascii=false) # 参考网上的方法,***ensure_ascii***设为false

print new_result

# 输出结果:

# "cities": [{"cityid": "101010100", "city": "北京"}, {"cityid": "101020100", "city": "上海"}]

ps:这里再为大家推荐几款比较实用的json在线工具供大家参考使用:

在线json代码检验、检验、美化、格式化工具:

json在线格式化工具:

在线xml/json互相转换工具:

json代码在线格式化/美化/压缩/编辑/转换工具:

在线json压缩/转义工具:

希望本文所述对大家python程序设计有所帮助。

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

你可能感兴趣的:(python转json中文乱码)