Java Jackson JsonNode 的get(i)方法疑惑

发布于 2022-09-01 17:43:17 字数 676 浏览 15 评论 0

        String str = "{\"data\":{\"birth_day\":7,\"birth_month\":6},\"errcode\":0,\"msg\":\"ok\",\"ret\":0}";

        ObjectMapper mapper = new ObjectMapper();
        JsonNode root = mapper.readTree(str);

        for (int i = 0; i < root.size() ; i++) {
            System.out.println(root.get(i));
        }

        for (Iterator<?> iter = root.fieldNames();iter.hasNext();){
            System.out.println(iter.next());
        }

// null
// null
// null
// null
// data
// errcode
// msg
// ret

为什么前面输出的结果都是Null?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹短裙飘 2022-09-08 17:43:17

public JsonNode get(int index)

Method for accessing value of the specified element of an array node. For other nodes, null is always returned.

For array nodes, index specifies exact location within array and allows for efficient iteration over child elements (underlying storage is guaranteed to be efficiently indexable, i.e. has random-access to elements). If index is less than 0, or equal-or-greater than node.size(), null is returned; no exception is thrown for any index.

参考

http://fasterxml.github.io/jackson-databind/javadoc/2.0.0/

http://fasterxml.github.io/jackson-databind/javadoc/2.0.0/com/fasterxml/jackson/databind/JsonNode.html#get(int)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文