gpt4 book ai didi

java - 在 Android 中使用 Json

转载 作者:行者123 更新时间:2023-12-01 12:27:08 24 4
gpt4 key购买 nike

我正在 Android 中使用 Json,这是我收到的 json:

    [
{
"0": "5",
"1": "CorpoSA",
"2": "CorpoSA",
"3": "http://162.243.229.85/images/CORPO%20SA%20logo.jpg",
"id": "5",
"title": "CorpoSA",
"description": "CorpoSA",
"img_url": "http://162.243.229.85/images/CORPO%20SA%20logo.jpg"
},
{
"0": "6",
"1": "CorpoSA2",
"2": "CorpoSA2",
"3": "http://162.243.229.85/images/home.jpg",
"id": "6",
"title": "CorpoSA2",
"description": "CorpoSA2",
"img_url": "http://162.243.229.85/images/home.jpg"
}
]

我把它放在一个名为 result 的字符串中,但我不知道如何提取 id、标题、描述和 url 并保存在数据库中。

当我使用时:

JSONObject json = new JSONObject(result);

然后

json.getJSONObject("id");

这不起作用,请有人帮助我

最佳答案

试试这个。

try{
JSONArray jsonArray = new JSONArray(result);
// looping through All jsonObject
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject jsonObject = jsonArray.getJSONObject(i);
String id = jsonObject.getString("id");
String title = jsonObject.getString("title");
String description = jsonObject.getString("description");
String img_url = jsonObject.getString("img_url");
}
} catch (JSONException e) {
e.printStackTrace();
}

关于java - 在 Android 中使用 Json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26241949/

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