I want to sort below List of strings as per user locale
List<String> words = Arrays.asList(
"?bc", "?bc", "àbc", "àbc", "Abc", "abc", "ABC"
);
For different user locale sort output should be different as per there locale.
How to sort above list as per user locale ?
I tried
Collections.sort(words , String.CASE_INSENSITIVE_ORDER);
But this is not working for localization, so how to pass locale parameter to Collections.sort()
or is there any other efficient way ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…