How to Parse Facebook Data

前端 未结 2 1673
星月不相逢
星月不相逢 2021-01-14 23:29

I am having a few problems getting Facebook data to parse properly.

I am working on implementing part of an application to allow a user to select and use one of thei

2条回答
  •  难免孤独
    2021-01-15 00:10

    why don't you try with the json classes...

    something like this:

            jsonObject = new JSONObject(your_data);
            jArray = jsonObject.getJSONArray("data");
    
            for(int i =0;i

    etc.

提交回复
热议问题