如何解析JSON字符串中的Andr​​oid? [英] How to parse json string in Android?

查看:147
本文介绍了如何解析JSON字符串中的Andr​​oid?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:
  在 JSON数组迭代的Andr​​oid / Java的

Possible Duplicate:
JSON Array iteration in Android/Java

我获取来自服务器的JSON字符串,我已经得到了JSON字符串由code。 但我不知道如何分析它。

I am fetching JSON string from server and I have already got JSON string by code. But I didn't understand how to parse it.

下面是我的JSON字符串

Below is my JSON string

{
    "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"
    }
}

请提供任何指导或code段。

Please provide any guidance or code snippet.

推荐答案

使用JSON类解析如

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

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

这篇关于如何解析JSON字符串中的Andr​​oid?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆