通过python代码附加JSON文件

时间:2017-05-09 11:54:58

标签: python json

我试图创建一个将数据附加到json文件中的函数,后面跟已经存在的相同缩进。我创建了json文件,如下所示。

{
    "TableA":
        [
            {"ID": "10001", "Name": "Chandan","Age": "29"},
            {"ID": "10002", "Name": "Rajesh", "Age": "24"},
            {"ID": "10003", "Name": "Raju", "Age": "25"}
        ]
}

Python代码:

import json

# Write Data on Json file
a_dict = {"ID": "10005", "Name": "Manoj","Age": "31"}
try:
    with open('TableA.json', 'a') as f:
        json_obj = json.dump(a_dict, json.load(f),ensure_ascii=False)
        f.write(json_obj)
        f.close()
except IOError as io:
    print "ERROR: ", io


# Read data from Json File
with open('TableA.json') as data_file:    
    data = json.load(data_file)

for i in data["TableA"]:
    print "ID: \t", i["ID"]
    print "Name: \t", i["Name"]
    print "Age: \t", i["Age"]

2 个答案:

答案 0 :(得分:2)

我做了一些更改以获得正确的输出。如果有人帮我优化代码,请为此提供帮助。

import json

# Write Data
a_dict = {}
try:
    with open('TableA.json') as data_file:    
        data = json.load(data_file)
        temp_list = []
        for dicObj in data["TableA"]:
            temp_list.append(dicObj)
        temp_list.append({"ID": "10006", "Name": "Ritesh","Age": "21"})
        data["TableA"] = temp_list
        a_dict["TableA"] = data["TableA"]
        with open('TableA.json','w') as f:
            f.write(json.dumps(a_dict, indent=4, sort_keys=True, encoding="utf-8"))
except IOError as io:
    print "ERROR: ", io

# Read data from Json File
with open('TableA.json') as data_file:    
    data = json.load(data_file)

for i in data["TableA"]:
    print "ID: \t", i["ID"]
    print "Name: \t", i["Name"]
    print "Age: \t", i["Age"]

输出:

 {
    "TableA": [
        {
            "Age": "29", 
            "ID": "10001", 
            "Name": "Chandan"
        }, 
        {
            "Age": "24", 
            "ID": "10002", 
            "Name": "Rajesh"
        }, 
        {
            "Age": "25", 
            "ID": "10003", 
            "Name": "Raju"
        }, 
        {
            "Age": "31", 
            "ID": "10005", 
            "Name": "Manoj"
        }, 
        {
            "Age": "21", 
            "ID": "10004", 
            "Name": "Ritesh"
        }, 
        {
            "Age": "21", 
            "ID": "10006", 
            "Name": "Ritesh"
        }
    ]
}

答案 1 :(得分:1)

您也可以选择再次编写整个json,而不是仅添加一行。

with open('TableA.json') as data_file:    
    data = json.load(data_file)
a_dict = {"ID": "10005", "Name": "Manoj","Age": "31"}
new_data = data["TableA"].append(a_dict)
with open('TableA.json','w') as f:
    f.write(json.dumps(new_data, indent=4, sort_keys=True))
相关问题