解决python3 json数据包含中文的读写问题

文章讲述了在Python3中使用json.dump写入数据时,需要注意文件打开时指定encoding=utf-8,以避免出现乱码问题。同时提到dump时设置ensure_ascii=False可保留中文字符,否则会转换为ASCII码。此外,向txt文件写入中文同样需指定utf-8编码。

转自:https://www.weidianyuedu.com/

python3 默认的是UTF-8格式,但在在用dump写入的时候仍然要注意:如下

import json
data1 = {
“TestId”: “testcase001”,
“Method”: “post”,
“Title”: “登录测试”,
“Desc”: “登录基准测试”,
“Url”: “http://xxx.xxx.xxx.xx”,
“InputArg”: {
“username”: “王小丫”,
“passwd”: “123456”,
},
“Result”: {
“errorno”: “0”
}
}
with open(‘casedate.json’, ‘w’, encoding=‘utf-8’) as f:
json.dump(data1, f, sort_keys=True, indent=4)
在打开文件的时候要加上encoding=‘utf-8’,不然会显示成乱码,如下:

{
“Desc”: “��¼��׼����”,
“InputArg”: {
“passwd”: “123456”,
“username”: “��СѾ”
},
“Method”: “post”,
“Result”: {
“errorno”: “0”
},
“TestId”: “testcase001”,
“Title”: “��¼����”,
“Url”: “http://xxx.xxx.xxx.xx”
}
在dump的时候也加上ensure_ascii=False,不然会变成ascii码写到文件中,如下:

{
“Desc”: “\u767b\u5f55\u57fa\u51c6\u6d4b\u8bd5”,
“InputArg”: {
“passwd”: “123456”,
“username”: “\u738b\u5c0f\u4e2b”
},
“Method”: “post”,
“Result”: {
“errorno”: “0”
},
“TestId”: “testcase001”,
“Title”: “\u767b\u5f55\u6d4b\u8bd5”,
“Url”: “http://xxx.xxx.xxx.xx”
}
另外python3在向txt文件写中文的时候也要注意在打开的时候加上encoding=‘utf-8’,不然也是乱码,如下:

with open(‘result.txt’, ‘a+’, encoding=‘utf-8’) as rst:
rst.write(‘return data’)
rst.write(‘|’)
for x in r.items():
rst.write(x[0])
rst.write(‘:’)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值