最佳答案
我创建了一个新的 JsonNode
JsonNode jNode = new ObjectCodec().createObjectNode();
with this node, how do I then add key value pairs within so that I can construct this new node with the new values? What I read in http://www.cowtowncoder.com/blog/archives/2011/08/entry_460.html mentioned about using
jNode.with("newNode").put("key1","value1");
但是查看 Jackson 的 JsonNode (v1.8)的 API 并没有显示任何这样的方法。