how to get data from Json object?

后端 未结 3 1598
花落未央
花落未央 2021-01-12 18:46

i am working on a android app which is integrated with facebook . i am using fql query to fetch info from facebook. my fql method is

                void run         


        
3条回答
  •  时光说笑
    2021-01-12 19:13

    String jsonString = yourstring;
    JSONObject jsonResult = new JSONObject(jsonString);
    JSONArray data = jsonResult.getJSONArray("data");
    if(data != null) {
        String[] names = new String[data.length()];
        String[] birthdays = new String[data.length()];
        for(int i = 0 ; i < data.length() ; i++) {
            birthdays[i] = data.getString("birthday");
            names[i] = data.getString("name");
        }
    }
    

    check http://www.androidhive.info/2012/01/android-json-parsing-tutorial/

提交回复
热议问题