Is there any easy way to sort a JSONArray of objects by an attribute in Android?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Perhaps using the Google GSON library you can deserialise the array to a typed collection of objects, and then using Collections perform a sort.

Look at 6th line in on the following link.. Looks a bit messy but might be quickest way..

http://sites.google.com/site/gson/gson-user-guide#TOC-Collections-Examples

link|improve this answer
I was hoping to avoid deserializing into objects as the objects contain a lot of data and cost a lot to process. – ninjasense Jan 28 '11 at 21:58
Where is the JSON sourced from? – Dave Jan 29 '11 at 8:21
I get all the JSON via a webresponse string that I create a JSONArray from. – ninjasense Jan 31 '11 at 21:00
Can you not perform the sort on the server side then so the data is already in the order you require before pulling it to the device? – Dave Feb 1 '11 at 8:16
feedback

Your Answer

 
or
required, but never shown

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