how to sort the string array in alphabetiacal order.

i had a string array like this .Is there API available in java docs to sort this string in alphabetical order.String hello[] = {"B","A","C"}
[161 byte] By [suppa_sa] at [2007-10-1 2:57:25]
# 1
How do you deal with capitals vs minuscules? Anyway: Arrays.sort().
CeciNEstPasUnProgrammeura at 2007-7-8 15:35:49 > top of Java-index,Java Essentials,Java Programming...
# 2
And if you want it to be case insensitive use:Arrays.sort(values, String.CASE_INSENSITIVE_ORDER) ;/Kaj
kajbja at 2007-7-8 15:35:49 > top of Java-index,Java Essentials,Java Programming...