如何使用JsonPath向Json添加新节点?

时间:2018-08-22 16:49:13

标签: java json jsonpath

我正在使用JSON并遇到一些问题。

我想在JSON对象中插入/更新路径。如果该路径不存在,则会创建该路径,然后插入一个新值。如果退出,它将以新值更新

例如,我要添加新路径,如下所示:

val doc = JsonPath.parse(jsonString)
doc.add("$.user.name", "John")

但是我总是会收到此错误,因为该路径不存在:

  

com.jayway.jsonpath.PathNotFoundException类:路径$ ['user']中缺少属性

因此,如果它不存在,我想创建一个新路径。

这是我的代码,但是jsonString不变:

var jsonString = "{}" val conf = Configuration.defaultConfiguration().addOptions(Option.DEFAULT_PATH_LEAF_TO_NULL).addOptions(Option.SUPPRESS_EXCEPTIONS)
JsonPath.using(conf).parse(jsonString).set(JsonPath.compile("$.user.name"), "John") 
Log.d("TAG", "new json = $jsonString") 

请给我您的建议。非常感谢你!

3 个答案:

答案 0 :(得分:1)

您可以执行以下操作:

JsonPath.parse(jsonString).set(JsonPath.compile("$.user.name"), "John");

答案 1 :(得分:1)

我尝试了三种不同的JSON库,并支持JsonPath / JsonPointer(Jackson,JsonPath和JSON-P),在丢失父节点的情况下,它们都不能够重构JSON对象层次结构。因此,我想出了自己的解决方案,可以使用Jackson / JsonPointer向JSON对象添加新值,因为它可以浏览JsonPointer部件。

private static final ObjectMapper mapper = new ObjectMapper();

public void setJsonPointerValue(ObjectNode node, JsonPointer pointer, JsonNode value) {
    JsonPointer parentPointer = pointer.head();
    JsonNode parentNode = node.at(parentPointer);
    String fieldName = pointer.last().toString().substring(1);

    if (parentNode.isMissingNode() || parentNode.isNull()) {
        parentNode = StringUtils.isNumeric(fieldName) ? mapper.createArrayNode() : mapper.createObjectNode();
        setJsonPointerValue(parentPointer, parentNode); // recursively reconstruct hierarchy
    }

    if (parentNode.isArray()) {
        ArrayNode arrayNode = (ArrayNode) parentNode;
        int index = Integer.valueOf(fieldName);
        // expand array in case index is greater than array size (like JavaScript does)
        for (int i = arrayNode.size(); i <= index; i++) {
            arrayNode.addNull();
        }
        arrayNode.set(index, value);
    } else if (parentNode.isObject()) {
        ((ObjectNode) parentNode).set(fieldName, value);
    } else {
        throw new IllegalArgumentException("`" + fieldName + "` can't be set for parent node `"
                + parentPointer + "` because parent is not a container but " + parentNode.getNodeType().name());
    }
}

用法:

ObjectNode rootNode = mapper.createObjectNode();

setJsonPointerValue(rootNode, JsonPointer.compile("/root/array/0/name"), new TextNode("John"));
setJsonPointerValue(rootNode, JsonPointer.compile("/root/array/0/age"), new IntNode(17));
setJsonPointerValue(rootNode, JsonPointer.compile("/root/array/4"), new IntNode(12));
setJsonPointerValue(rootNode, JsonPointer.compile("/root/object/num"), new IntNode(81));
setJsonPointerValue(rootNode, JsonPointer.compile("/root/object/str"), new TextNode("text"));
setJsonPointerValue(rootNode, JsonPointer.compile("/descr"), new TextNode("description"));

System.out.println(mapper.writerWithDefaultPrettyPrinter().writeValueAsString(rootNode));

这将生成并打印以下JSON对象:

{
  "root" : {
    "array" : [ {
      "name" : "John",
      "age" : 17
    }, null, null, null, 12 ],
    "object" : {
      "num" : 81,
      "str" : "text"
    }
  },
  "descr" : "description"
}

可以肯定的是,这并不适用于所有极端情况,但适用于大多数情况。希望这对其他人有帮助。

答案 2 :(得分:1)

要创建一个新节点,请尝试在JsonPath.parse(jsonString)的结果实现的WriteContext接口上放置put(path,key,object)。