当前位置:  开发笔记 > 编程语言 > 正文

从对象创建Jackson对象节点

如何解决《从对象创建Jackson对象节点》经验,为你挑选了1个好方法。

我需要给一个新项添加一个ObjectNode给定的键和值。该值被指定为Object在该方法中SIG和应该是ObjectNode.set()接受(的类型之一StringIntegerBoolean等等)。但是我不能仅仅这样做,myObjectNode.set(key, value);因为value只是一个Object,当然会出现“不适用于参数(字符串,对象)”错误。

我的解决方案是创建一个函数来检查instanceof和强制转换以创建一个ValueNode

private static ValueNode getValueNode(Object obj) {
  if (obj instanceof Integer) {
    return mapper.createObjectNode().numberNode((Integer)obj);
  }
  if (obj instanceof Boolean) {
    return mapper.createObjectNode().booleanNode((Boolean)obj);
  }
  //...Etc for all the types I expect
}

..然后我可以使用 myObjectNode.set(key, getValueNode(value));

一定有更好的方法,但是我很难找到它。

我猜想有一种使用方法,ObjectMapper但是目前我还不清楚。例如,我可以将值写为字符串,但是需要它作为我可以在ObjectNode上设置的值,并且需要正确的类型(即,不能将所有内容都转换为String)。



1> Alexey Gavri..:

使用ObjectMapper#convertValue方法将对象隐藏到JsonNode实例。这是一个例子:

public class JacksonConvert {
    public static void main(String[] args) {
        final ObjectMapper mapper = new ObjectMapper();
        final ObjectNode root = mapper.createObjectNode();
        root.set("integer", mapper.convertValue(1, JsonNode.class));
        root.set("string", mapper.convertValue("string", JsonNode.class));
        root.set("bool", mapper.convertValue(true, JsonNode.class));
        root.set("array", mapper.convertValue(Arrays.asList("a", "b", "c"), JsonNode.class));
        System.out.println(root);
    }
}

输出:

{"integer":1,"string":"string","bool":true,"array":["a","b","c"]}

推荐阅读
coco2冰冰
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有