gpt4 book ai didi

java - 遍历多个 JsonObject

转载 作者:行者123 更新时间:2023-11-30 00:08:11 26 4
gpt4 key购买 nike

如何使用这种结构遍历 JSON:

{
"name": "Jane John Doe",
"email": "janejohndoe@email.com"
},
{
"name": "Jane Doe",
"email": "janedoe@email.com"
},
{
"name": "John Doe",
"email": "johndoe@email.com"
}

我尝试了下面的代码,但我只得到了最后一项。

List<Object> response = new ArrayList<>();

JSONObject jsonObject = new JSONObject(json);
Iterator<?> iterator = jsonObject.keys();
while (iterator.hasNext()) {
Object key = iterator.next();
Object value = jsonObject.get(key.toString());

response.add(value);
}

最佳答案

根据您的代码,您只需获取第一个对象的键和值。

JSONObject jsonObject = new JSONObject(json);

从上面的代码中,您只是从 JSON 中获取第一个对象。

Iterator<?> iterator = jsonObject.keys();
while (iterator.hasNext()) {
Object key = iterator.next();
Object value = jsonObject.get(key.toString());
response.add(value);
}

从上面的代码中,您将获得第一个 JSON 对象的键和值。

现在,如果你想获取所有对象的值,那么你必须按照下面的方式更改你的代码:

像下面这样更改 JSON:

[{
"name": "Jane John Doe",
"email": "janejohndoe@email.com"
},
{
"name": "Jane Doe",
"email": "janedoe@email.com"
},
{
"name": "John Doe",
"email": "johndoe@email.com"
}]

按照以下方式更改 java 代码:

List<HashMap<String,String>> response = new ArrayList<>();
JSONArray jsonarray = null;
try {
jsonarray = new JSONArray(json);
for(int i=0;i<jsonarray.length();i++) {
JSONObject jsonObject = jsonarray.getJSONObject(i);
Iterator<?> iterator = jsonObject.keys();
HashMap<String,String> map = new HashMap<>();
while (iterator.hasNext()) {
Object key = iterator.next();
Object value = jsonObject.get(key.toString());
map.put(key.toString(),value.toString());

}
response.add(map);
}
} catch (JSONException e) {
e.printStackTrace();
}

关于java - 遍历多个 JsonObject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48612897/

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