我有一个JSON示例,我想转换为Excell文件,以便能够修改所有字段,然后,能够导出Excell文件以检索更新的新JSON文件。
我尝试了一些像(http://www.convertcsv.com/csv-to-json.htm)这样的在线工具,但结果并不好:我能够创建一个csv文件,但无法将csv文件转换为json。
你知道一个工具,我可以将其转换为csv /转换为json吗?
JSON示例:
[
{
"key": "keyExample",
"type": "typeExample",
"ref": "refExample",
"items": [
{
"itemRef": "aaa",
"count": 1,
"desc": "aaaaaaaaa"
},
{
"itemRef": "bbb",
"count": 2,
"desc": "bbbbbbb"
},
{
"itemRef": "ccc",
"count": 2,
"desc": "ccccccc"
}
]
},
{
"key": "keyExample2",
"type": "typeExample2",
"ref": "refExample2",
"items": [
{
"itemRef": "aaa",
"count": 1,
"desc": "aaaaaaaaa"
},
{
"itemRef": "bbb",
"count": 2,
"desc": "bbbbbbb"
},
{
"itemRef": "ccc",
"count": 2,
"desc": "ccccccc"
}
]
}
]