What is the best way to sort an ArrayList in Java?
ArrayList
Where String[] is...
String[] = new String[] { \"abc\", \"abc\", \"ab
Based on your edit: Your String[] should be a School object to contain your attributes. Make your School object implement Comparable and that will allow easy sorting with Collections.sort().