ฉันต้องการเปลี่ยนค่าของแอตทริบิวต์ JSON ใน Java ฉันสามารถรับค่าได้อย่างถูกต้อง แต่ฉันไม่สามารถแก้ไข JSON ได้
นี่คือรหัสด้านล่าง
JsonNode blablas = mapper.readTree(parser).get("blablas");
for (JsonNode jsonNode : blablas) {
String elementId = jsonNode.get("element").asText();
String value = jsonNode.get("value").asText();
if (StringUtils.equalsIgnoreCase(elementId, "blabla")) {
if(value != null && value.equals("YES")){
// I need to change the node to NO then save it into the JSON
}
}
}
วิธีที่ดีที่สุดในการทำคืออะไร?
resultMap = mapper.convertValue(aJsonNode, Map.class);
แก้ไขในแผนที่จากนั้นเปลี่ยน Map นั้นกลับเป็น JsonNode แค่พูด.