gpt4 book ai didi

java - 从 JsonNode 数组中获取元素

转载 作者:行者123 更新时间:2023-12-04 02:35:37 28 4
gpt4 key购买 nike

我有这个json:

{
"text":[
{"a":1},
{"b":2}
]
}

我有这个代码:
JsonNode jsonNode = (new ObjectMapper()).readTree(jsonString);

//get first element from "text"
//this is just an explanation of what i want

String aValue = jsonNode.get("text")[0]
.get("a")
.asText();

我怎么能做到这一点,而不将其映射到一个对象?

或者做类似 JsonNode[] array 的事情和 array[0]代表 aarray[1]代表 b

最佳答案

如果要显式遍历json,找到a的值,您可以对您指定的 json 执行此操作。

String aValue = jsonNode.get("text").get(0).get("a").asText();

查找 b 的值将是
String bValue = jsonNode.get("text").get(1).get("b").asText();

也可以遍历文本数组中的元素,得到 a的值和 b作为
for (JsonNode node : jsonNode.get("text")) {
System.out.println(node.fields().next().getValue().asText());
}

这将在控制台上打印以下内容
1
2

关于java - 从 JsonNode 数组中获取元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62090484/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com