如何在Java中修改JsonNode?
我需要在Java中更改JSON属性的值,我可以正确获取该值,但无法修改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
}
}
}
做这个的最好方式是什么?
回答:
JsonNode
是不可变的,旨在进行解析操作。但是,可以将其转换为允许突变的ObjectNode
(和ArrayNode
):
((ObjectNode)jsonNode).put("value", "NO");
对于数组,可以使用:
((ObjectNode)jsonNode).putArray("arrayName").add(object.getValue());
以上是 如何在Java中修改JsonNode? 的全部内容, 来源链接: utcz.com/qa/423463.html