我从服务器获取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"
}
}
请提供任何指导或代码段。
答案 0 :(得分:105)
使用JSON类进行解析,例如
JSONObject mainObject = new JSONObject(Your_Sring_data);
JSONObject uniObject = mainObject.getJSONObject("university");
String uniName = uniObject.getJsonString("name");
String uniURL = uniObject.getJsonString("url");
JSONObject oneObject = mainObject.getJSONObject("1");
String id = oneObject.getJsonString("id");
....
答案 1 :(得分:9)
以下是解析android中JSON字符串的链接。
http://www.ibm.com/developerworks/xml/library/x-andbene1/?S_TACT=105AGY82&S_CMP=MAVE
另外根据你的json字符串代码片段必须是这样的: -
JSONObject mainObject = new JSONObject(yourstring);
JSONObject universityObject = mainObject.getJSONObject("university");
JSONString name = universityObject.getJsonString("name");
JSONString url = universityObject.getJsonString("url");
与其他对象相同。