gpt4 book ai didi

java - 如何在 Java 中访问深层 JSON 元素

转载 作者:行者123 更新时间:2023-11-30 02:50:28 25 4
gpt4 key购买 nike

我有以下 JSON 响应:

{
"destination_addresses" : [ "Berlin, Deutschland" ],
"origin_addresses" : [ "Mannheim, Deutschland" ],
"rows" : [
{
"elements" : [
{
"distance" : {
"text" : "624 km",
"value" : 624195
},
"duration" : {
"text" : "5 Stunden, 53 Minuten",
"value" : 21156
},
"status" : "OK"
}
]
}
],
"status" : "OK"
}

我的问题是:如何访问“距离”部分中的“文本”元素?

我现在有以下内容:

JSONObject object = (JSONObject) new JSONTokener(response).nextValue();
JSONArray rows= null;
rows= object.getJSONArray("rows");

最佳答案

您必须继续解析 JSONArray,例如:

for(int i = 0; i < rows.length; i++) {
JSONArray elements = rows.getJSONArray(i);
for(int j = 0; j < elements.length; j++) {
JSONObject current = elements.getJSONObject(j);
String curText = current.getJSONObject("distance").getJSONObject("text");
}
}

或者您可以在 POJO 中表示您的 Json 并使用 Jackson 的 ObjectMapper 对其进行反序列化。

关于java - 如何在 Java 中访问深层 JSON 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38827077/

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