把json的数据写入到文件中
import json
with open('data.json','w+') as f:
json.dump({"name":"张彪"},f)
把json的数据从文件中读取出来
import json
with open('data.json','r') as f:
x=json.load(f)
print(x,type(x))
import json
with open('data.json','w+') as f:
json.dump({"name":"张彪"},f)
import json
with open('data.json','r') as f:
x=json.load(f)
print(x,type(x))
springboot写入json文件,格式化写入json
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M