python操作json的四种方法
python操作json文件通常有4中方法:
- json.loads
- json.load
- json.dumps
- json.dump
json.loads
将json对象转化为python对象,也就是将字符串转换为字典类型,例如:
import json
header = '{"Content-Type":"application/json","Authorization":"ww"}'
print(type(header))
newheader=json.loads(header)
print(type(newheader))
json.load
对json文件进行读取
with open(dir_config.testcasedir+"/allVersion.json") as f:
allversion=json.load(f)
print(type(allversion))
也可以通过json.loads读取,但是需要把文件内容转换为二进制流,json.loads主要是对数据流进行转换为json;而json.load主要是对文件进行转换,二者的操作类型不一致,但是最终结果都是将其转换为dict类型。
json.dumps
将python对象转换为json对象,也就是将字典转换为字符串:
import json
header = {"Content-Type":"application/json","Authorization":"ww"}
print(type(header))
newheader=json.dumps(header)
print(type(newheader))
json.dump
“编码”,将数据写入json文件文章来源:https://www.toymoban.com/news/detail-688875.html
with open(dir_config.testcasedir+"/allVersion.json",'a') as f:
header = {"Content-Type":"application/json","Authorization":"ww"}
allversion=json.dump(header,fp=f)
文章来源地址https://www.toymoban.com/news/detail-688875.html
到了这里,关于python之json文件读写操作的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!