String数组首字母排序

//不区分大小写
Arrays.sort(stringArray,String.CASE_INSENSITIVE_ORDER);
//区分大小写
Arrays.sort(stringArray);

你可能感兴趣的:(String)