Possible Duplicate:
Sort ArrayList of custom Objects by property
How do i sort array elements into ascending order?
How do i sort array elements into ascending order? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Your elements must be Comparable or use a Comparator that compares the objects in the array. This is needed, as Java doesn't know by which fields you want to compare two objects. An OK example seems to be the following: http://lkamal.blogspot.com/2008/07/java-sorting-comparator-vs-comparable.html After that you can use Array.sort() |
|||
|
|
|
You use an overload of
See also |
|||
|
|
http://java.sun.com/j2se/1.4.2/docs/api/java/util/Arrays.html |
|||
|
|