how to get data from Json object?

后端 未结 3 1600
花落未央
花落未央 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:19

    Edit your code like this ...this may help you..

    JSONObject resultObject = new JSONObject(response);
    
    JSONArray JArray = resultObject.getJSONArray("data");
    
                    for (int t=0; t

提交回复
热议问题