Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to get my Facebook friend and profile picture with the JSON get method. I wrote some code, but when I get a profile picture it is take too long time. I think my way is not the best effort and I think when I have a lot of friend application, it will be crash because it is out of memory.

What is the solution?

Code:

public ArrayList<Person> readFacebookFriend() {
    ArrayList<Person> kisiler=new ArrayList<Person>();
    HttpClient client = new DefaultHttpClient();
    HttpGet httpGet = new HttpGet(
            "https://graph.facebook.com/me/friends?access_token=AAAAAAITEghMBABRP2MgusuqZBrkJjmiUuekMcdpV0QCYf3zB8ks7Eabkvh8zEjNpK1DvbHMZCuVDa97hZCZBqdswOZC1r74ZCZBJHF4yZAzU3wZDZD");
    try {
        HttpResponse response = client.execute(httpGet);
        BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "UTF-8"));
        String json = reader.readLine();
        JSONObject object = (JSONObject) new JSONTokener(json).nextValue();
        JSONArray locations = object.getJSONArray("data");

        for(int i=0;i<locations.length();i++)
        {
            String k= locations.get(i).toString();
            JSONObject isim = (JSONObject) new JSONTokener(k).nextValue();
            Person per=new Person();
            per.id=isim.getString("id");
            per.name=isim.getString("name");
            per.ProfilePhotoUrl="http://graph.facebook.com/"+per.id+"/picture?type=small";
            kisiler.add(per);
        }
share|improve this question

closed as not a real question by bmargulies, Paresh Mayani, BK., VMAtm, abatishchev Dec 27 '11 at 10:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

The high level logic of your code should work fine getting the pictures. However, I'm not sure about how memory intensive JSON objects are in the Android OS, but I would suspect that the newing up of the JSONTokener inside that loop is causing problems. It may be possible to new up the JSONTokener just once, outside the loop, and then passing in the string value k into it inside the loop.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 14:51

Not the answer you're looking for? Browse other questions tagged or ask your own question.