我想用Python来更新JSON数据。
import json
with open('./gui-config.json','r+') as f:
js=json.load(f)
js['configs'][0]['password']='123'
f.seek(0)
json.dump(js,f)
这是我的测试JSON名为“gui-config.json”:
{
"configs" : [
{
"server" : "US.SSSERVER.PW",
"server_port" : 8989,
"password" : "73221446",
"method" : "aes-256-cfb",
"remarks" : ""}
],
"index" : 0,
"global" : false,
"enabled" : true,
"shareOverLan" : false,
"isDefault" : false,
"localPort" : 1080}
结束运行,“gui-config.json”是:
{
"localPort": 1080,
"isDefault": false,
"configs": [
{
"server_port": 8989,
"method": "aes-256-cfb",
"remarks": "",
"password": "123",
"server": "US.SSSERVER.PW"
}
],
"global": false,
"enabled": true,
"index": 0,
"shareOverLan": false
}
sDefault": false,
"localPort" : 1080
}
"sDefault" : false, "localPort" : 1080}
是重复信息。为什么会这样?
我可以一次打开这个操作吗?
答案 0 :(得分:2)
import json
with open('./gui-config.json','r') as f:
js=json.load(f)
js['configs'][0]['password']='123'
with open('./gui-config.json','w') as f:
js.dumps(js, f)
我认为这是一种更简洁,更容易遵循的方法。再次打开文件进行写入会清除现有内容(您不必担心,因为内存中已有它的副本)。