parcing JSON 文件后,如何使用 json-simple 修改 JSON 文件中特定字段的值
How to modify the value of a particular field in a JSON file using json-simple, after parcing the JSON file
我需要修改我的 json 文件中某个键的特定值,它是一个嵌套的 JSON 文件,我已经遍历到那个键值对,但我无法修改值不知道怎么回写到json.
使用json-简单解析JSON
这是 JSON 文件:
{
"entity": {
"id": "ppr20193060018",
"data": {
"relationships": {
"productpresentationtolot": [
{
"id": "",
"relTo": {
"id": "",
"data": {
"attributes": {
"rmsitemid": {
"values": [
{
"source": "internal",
"locale": "en-US",
"value": "2019306"
}
]
}
}
},
"type": "lot"
}
}
]
}
},
"type": "productpresentation"
}
}
使用以下代码读取它:
JSONParser parser = new JSONParser();
reader = new FileReader("path.json");
JSONArray rmsArray =(JSONArray) rmsitemid.get("values");
for(Object obj2:rmsArray)
{
JSONObject tempObj1=(JSONObject)obj2;
System.out.println(tempObj1.get("value"));
}
我能够打印 value(Key) 中的内容,即 2019306,但我不知道如何用其他值替换它,它应该更改 [=28= 中的值] 文件也。
感谢任何帮助!
这是一个完整的例子,如何使用 simple-json 库进行读写:
// read from resource file
JSONObject value;
try (Reader in = new InputStreamReader(getClass().getResourceAsStream("/simple.json"))) {
JSONParser parser = new JSONParser();
value = (JSONObject) parser.parse(in);
}
JSONObject entity = (JSONObject) value.get("entity");
// update id
entity.put("id", "manipulated");
// write to output file
try (Writer out = new FileWriter("output.json")) {
out.write(value.toJSONString());
}
JSON对象基本上是地图。所以你可以把值放在里面。
要再次创建 JSON 字符串,请使用 toJSONString()
。
在我的示例中,我创建了一个新的输出文件。不过,您也可以覆盖原始输入文件。但是你必须把文件写完整。
我需要修改我的 json 文件中某个键的特定值,它是一个嵌套的 JSON 文件,我已经遍历到那个键值对,但我无法修改值不知道怎么回写到json.
使用json-简单解析JSON
这是 JSON 文件:
{
"entity": {
"id": "ppr20193060018",
"data": {
"relationships": {
"productpresentationtolot": [
{
"id": "",
"relTo": {
"id": "",
"data": {
"attributes": {
"rmsitemid": {
"values": [
{
"source": "internal",
"locale": "en-US",
"value": "2019306"
}
]
}
}
},
"type": "lot"
}
}
]
}
},
"type": "productpresentation"
}
}
使用以下代码读取它:
JSONParser parser = new JSONParser();
reader = new FileReader("path.json");
JSONArray rmsArray =(JSONArray) rmsitemid.get("values");
for(Object obj2:rmsArray)
{
JSONObject tempObj1=(JSONObject)obj2;
System.out.println(tempObj1.get("value"));
}
我能够打印 value(Key) 中的内容,即 2019306,但我不知道如何用其他值替换它,它应该更改 [=28= 中的值] 文件也。
感谢任何帮助!
这是一个完整的例子,如何使用 simple-json 库进行读写:
// read from resource file
JSONObject value;
try (Reader in = new InputStreamReader(getClass().getResourceAsStream("/simple.json"))) {
JSONParser parser = new JSONParser();
value = (JSONObject) parser.parse(in);
}
JSONObject entity = (JSONObject) value.get("entity");
// update id
entity.put("id", "manipulated");
// write to output file
try (Writer out = new FileWriter("output.json")) {
out.write(value.toJSONString());
}
JSON对象基本上是地图。所以你可以把值放在里面。
要再次创建 JSON 字符串,请使用 toJSONString()
。
在我的示例中,我创建了一个新的输出文件。不过,您也可以覆盖原始输入文件。但是你必须把文件写完整。