python3 默認(rèn)的是UTF-8格式,但在在用dump寫入的時候仍然要注意:如下
import json
data1 = {
"TestId": "testcase001",
"Method": "post",
"Title": "登錄測試",
"Desc": "登錄基準(zhǔn)測試",
"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(':')
更多關(guān)于解決python3 json數(shù)據(jù)包含中文的讀寫與亂碼問題請查看下面的相關(guān)鏈接
您可能感興趣的文章:- Python 讀寫 Matlab Mat 格式數(shù)據(jù)的操作
- python基于Pandas讀寫MySQL數(shù)據(jù)庫
- python里讀寫excel等數(shù)據(jù)文件的6種常用方式(小結(jié))
- python讀寫數(shù)據(jù)讀寫csv文件(pandas用法)
- Python web框架(django,flask)實(shí)現(xiàn)mysql數(shù)據(jù)庫讀寫分離的示例
- python讀寫excel數(shù)據(jù)--pandas詳解