gpt4 book ai didi

android - 在android中从JSON中获取值

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

我正在向服务器发送请求,它会给我一个响应并提供 JSON 格式的数据,现在我想从该 JSON 格式中获取一些特定的值,这很热门。

{
"education": [
{
"school": {
"id": "2009305",
"name": "FG boys public high school Bannu Cantt "
},
"type": "High School"
},
{
"school": {
"id": "109989",
"name": "University of Engineering & Technology"
},
"type": "College"
}
],
"id": "xxxxxxx"
}

现在我需要这个 JSON 中的学校名称

最佳答案

JSONObject json = new JSONObject(response);
JSONArray education = json.getJSONArray("education");
for(int i = 0; i < education.length(); i++){
JSONObject con_json = education.getJSONObject(i);
String school_type = con_json.getString("type");
JSONObject school_json = con_json.getJSONObject("school");
String school_name = school_json.getString("name");
}

关于android - 在android中从JSON中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24177231/

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