⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 collatordemo.java

📁 这是一个英文版的《Java程序设计与问题解决》现在好多大学都当成教材
💻 JAVA
字号:
/* * 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.util.*;import java.text.*;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);   }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -