I didn't expect this is that complex. But I can't figure out how I can convert my arraylist of custom class to a JSONArray. I understand there is no direct method to do that. So I made arraylist of JSONObjects from my arraylist. Now in order to save this into a JSON file, how can I convert the arraylist of JSONObjects to JSONArray?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Like this:

JSONArray toReturn = new JSONArray();
for(JSONObject object : yourJSONArrayList){
    toReturn.put(object);
}

toReturn will then be a JSONArray that has all the JSONObjects from your arraylist of JSONObjects in it.

link|improve this answer
Laughing at myself... As a old .NET developer, I searched add or insert. Thanks! – Paul Nov 23 '11 at 19:15
feedback

Give Gson Library a try, all that custom json conversion code goes away.

link|improve this answer
I thought about it before but since our app has relatively large file size, I didn't want to add another 200K. But thanks anyway. – Paul Nov 23 '11 at 20:56
feedback

Your Answer

 
or
required, but never shown

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