I18N : Text : Collator « I18N « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java » I18N » CollatorScreenshots 
I18N : Text
I18N : Text
 
/* From http://java.sun.com/docs/books/tutorial/index.html */

/*
 * Copyright (c) 1995-1998 Sun Microsystems, Inc. All Rights Reserved.
 
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for NON-COMMERCIAL purposes and without fee is hereby granted
 * provided that this copyright notice appears in all copies. Please refer to
 * the file "copyright.html" for further important copyright and licensing
 * information.
 
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
 * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
 * NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
 * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES.
 */

import java.text.Collator;
import java.util.Locale;

public class CollatorDemo {

  public static void sortStrings(Collator collator, String[] words) {
    String tmp;
    for (int i = 0; i < words.length; i++) {
      for (int j = i + 1; j < words.length; j++) {
        // Compare elements of the array two at a time.
        if (collator.compare(words[i], words[j]) 0) {
          // Swap words[i] and words[j]
          tmp = words[i];
          words[i= words[j];
          words[j= tmp;
        }
      }
    }
  }

  public static void printStrings(String[] words) {
    for (int i = 0; i < words.length; i++) {
      System.out.println(words[i]);
    }
  }

  public static void testCompare() {

    Collator myCollator = Collator.getInstance(new Locale("en""US"));

    System.out.println(myCollator.compare("abc""def"));
    System.out.println(myCollator.compare("rtf""rtf"));
    System.out.println(myCollator.compare("xyz""abc"));
  }

  static public void main(String[] args) {

    testCompare();
    System.out.println();

    Collator fr_FRCollator = Collator.getInstance(new Locale("fr""FR"));
    Collator en_USCollator = Collator.getInstance(new Locale("en""US"));

    String eWithCircumflex = new String("\u00EA");
    String eWithAcute = new String("\u00E9");

    String peachfr = "p" + eWithAcute + "ch" + eWithAcute;
    String sinfr = "p" + eWithCircumflex + "che";

    String[] words = peachfr, sinfr, "peach""sin" };

    sortStrings(fr_FRCollator, words);
    System.out.println("Locale: fr_FR");
    printStrings(words);

    System.out.println();

    sortStrings(en_USCollator, words);
    System.out.println("Locale: en_US");
    printStrings(words);
  }
}
           
         
  
Related examples in the same category
1.Collator.getInstance(new Locale("sv", ""))
2.Comparing Half-Width and full-width A
3.Collator.NO_DECOMPOSITION
4.Collator.CANONICAL_DECOMPOSITION
5.Collator.FULL_DECOMPOSITION
6.Sort Collate
7.I18N SortI18N Sort
8.Searching, Sorting, and Text Boundary Detection: Collation IssuesSearching, Sorting, and Text Boundary Detection: Collation Issues
9.Compare accentuated letters
10.Check Equality for two strings with Collator
11.Sort strings using Collator class
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.