P00dle 0 Junior Poster

I've found this online(Can't remember where) and I thought it might be usefull to other people as well:

package org.kodejava.example.text;
 
import java.util.List;
import java.util.ArrayList;
import java.util.Locale;
import java.util.Collections;
import java.text.Collator;
 
public class StringShortWithCollator {
    public static void main(String[] args) {
        List<String> fruits = new ArrayList<String>();
        fruits.add("Guava");
        fruits.add("Banana");
        fruits.add("Orange");
        fruits.add("Mango");
        fruits.add("Apple");
 
        //
        // Define a collator for US English.
        //
        Collator collator = Collator.getInstance(Locale.US);
         
        //
        // Sort the list base on the collator
        //
        Collections.sort(fruits, collator);
 
        for (int i = 0; i < fruits.size(); i++) {
            String fruit = fruits.get(i);
 
            System.out.println("Fruit = " + fruit);
        }
    }
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.