gpt4 book ai didi

android - 如何在Android中解析json字符串?

转载 作者:IT老高 更新时间:2023-10-28 12:45:52 26 4
gpt4 key购买 nike

Possible Duplicate:
JSON Array iteration in Android/Java

我正在从服务器获取 JSON 字符串,并且我已经通过代码获取了 JSON 字符串。但是我不明白如何解析它。

下面是我的 JSON 字符串

{
"university": {
"name": "oxford",
"url": "http://www.youtube.com"
},
"1": {
"id": "2",
"title": "Baseball",
"datetime": "2011-11-11 10:41:46"
},
"2": {
"id": "1",
"title": "Two basketball team players earn all state honors",
"datetime": "2011-11-11 10:40:57"
}
}

请提供任何指导或代码 fragment 。

最佳答案

使用 JSON 类进行解析,例如

JSONObject mainObject = new JSONObject(Your_Sring_data);
JSONObject uniObject = mainObject.getJSONObject("university");
String uniName = uniObject.getString("name");
String uniURL = uniObject.getString("url");

JSONObject oneObject = mainObject.getJSONObject("1");
String id = oneObject.getString("id");
....

关于android - 如何在Android中解析json字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8091051/

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