vote up 5 vote down star
1

Is there any EASY way to sort an array in descending order like how they have a sort in ascending order in the Arrays class http://www.j2ee.me/javase/6/docs/api/java/util/Arrays.html

?

Or do I have to stop being lazy and do this myself :[

flag
2  
"Or do I have to stop being lazy and do this myself " - as a programmer, you should never stop being lazy ;)) – luvieere Nov 7 at 23:11

2 Answers

vote up 7 vote down check

You could use this

sort(T[] a, Comparator<? super T> c) 

Arrays.sort(a, Collections.reverseOrder());
link|flag
vote up 3 vote down

You can use This:

    Arrays.sort(data,Collections.reverseOrder());

Collections.reverseOrder() returns a Comparator using the inverse natural order or you can get a inverted version of your own comparator using Collections.reverseOrder(myComparator).

link|flag
The OP wants to sort an array. Collections.sort() takes a List as input parameter, not an array. – Pascal Thivent Nov 8 at 2:22
ops,i wrote Collections instead of Arrays.Its corrected now. – William Nov 8 at 5:12

Your Answer

Get an OpenID
or

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