web-dev-qa-db-fra.com

Comment analyser json string dans Android?

Duplicate possible:
itération JSON Array sous Android/Java

Je récupère la chaîne JSON du serveur et j'ai déjà la chaîne JSON codée. Mais je n'ai pas compris comment l'analyser.

Ci-dessous ma chaîne 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"
    }
}

Veuillez fournir des conseils ou des extraits de code.

48
helloDroid

Utilisez les classes JSON pour analyser par exemple

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");
....
111
Arslan Anwar

Vous trouverez ci-dessous le lien qui guide l’analyse de la chaîne JSON dans Android.

http://www.ibm.com/developerworks/xml/library/x-andbene1/?S_TACT=105AGY82&S_CMP=MAVE

En outre, selon l'extrait de code de chaîne json, il doit ressembler à ceci: -

JSONObject mainObject = new JSONObject(yourstring);

JSONObject universityObject = mainObject.getJSONObject("university");
JSONString name = universityObject.getJsonString("name");  
JSONString url = universityObject.getJsonString("url");

Même chose pour un autre objet.

9
Shashank_Itmaster