如何在Java中修改JsonNode?

2022-08-31 07:40:06

我需要在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
            }
        }
    }

最好的方法是什么?


答案 1

JsonNode是不可变的,用于解析操作。但是,它可以被放入(和)允许突变:ObjectNodeArrayNode

((ObjectNode)jsonNode).put("value", "NO");

对于数组,可以使用:

((ObjectNode)jsonNode).putArray("arrayName").add(object.ge‌​tValue());

答案 2

添加一个答案,因为其他人在接受的答案的评论中投了赞成票,他们在尝试投射到ObjectNode(包括我自己)时得到了这个例外:

Exception in thread "main" java.lang.ClassCastException: 
com.fasterxml.jackson.databind.node.TextNode cannot be cast to com.fasterxml.jackson.databind.node.ObjectNode

解决方案是获取“父”节点,并执行 put,有效地替换整个节点,而不管原始节点类型如何。

如果需要使用节点的现有值“修改”节点:

  1. get的值/数组JsonNode
  2. 对该值/数组执行修改
  3. 继续呼叫家长。put

代码,其目标是修改 ,它是 和 的子节点:subfieldNodeANode1

JsonNode nodeParent = someNode.get("NodeA")
                .get("Node1");

// Manually modify value of 'subfield', can only be done using the parent.
((ObjectNode) nodeParent).put('subfield', "my-new-value-here");

学分:

从这里得到了这个灵感,感谢wassgreen@