我需要在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
}
}
}
这样做的最佳方式是什么?
答案 0 :(得分:151)
JsonNode
是不可变的,用于解析操作。但是,它可以转换为允许突变的ObjectNode
(和ArrayNode
):
((ObjectNode)jsonNode).put("value", "NO");
对于数组,您可以使用:
((ObjectNode)jsonNode).putArray("arrayName").add(object.getValue());
答案 1 :(得分:3)
我认为您可以转换为ObjectNode并使用put
方法。喜欢这个
ObjectNode o = (ObjectNode) jsonNode;
o.put("value", "NO");
答案 2 :(得分:2)
您需要获取ObjectNode
类型对象才能设置值。
看看this
答案 3 :(得分:2)
@ Sharon-Ben-Asher的答案还可以。
但就我而言,对于数组我必须使用:
((ArrayNode) jsonNode).add("value");
答案 4 :(得分:1)
添加一个答案,就像其他人在接受的答案的注释中所赞成的那样,他们在尝试投射到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
,有效地替换整个节点,而不管原始节点的类型如何。
如果您需要使用节点的现有值来“修改”该节点:
get
JsonNode
的值/数组put
。代码,目标是修改subfield
,它是NodeA
和Node1
的子节点:
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");
信用:
感谢here,我从wassgreen@得到了灵感
答案 5 :(得分:-1)
只是为了理解那些可能无法全面了解的人,以下代码可以帮助我找到一个字段然后更新它
ObjectMapper mapper = new ObjectMapper();
JsonNode rootNode = mapper.readTree(JsonString);
JsonPointer valueNodePointer = JsonPointer.compile("/GrandObj/Obj/field");
JsonPointer containerPointer = valueNodePointer.head();
JsonNode parentJsonNode = rootNode.at(containerPointer);
if (!parentJsonNode.isMissingNode() && parentJsonNode.isObject()) {
ObjectNode parentObjectNode = (ObjectNode) parentJsonNode;
//following will give you just the field name.
//e.g. if pointer is /grandObject/Object/field
//JsonPoint.last() will give you /field
//remember to take out the / character
String fieldName = valueNodePointer.last().toString();
fieldName = fieldName.replace(Character.toString(JsonPointer.SEPARATOR), StringUtils.EMPTY);
JsonNode fieldValueNode = parentObjectNode.get(fieldName);
if(fieldValueNode != null) {
parentObjectNode.put(fieldName, "NewValue");
}
}