JAVA基础:Java编程中怎样实现中文排序

上一篇 / 下一篇  2007-12-12 17:49:00 / 个人分类:学习笔记


第一种情况:

 

                  Comparator cmp = Collator.getInstance(java.util.Locale.CHINA);
        
        String[] arr = { "张三", "李四", "王五", "刘六" };
        Arrays.sort(arr, cmp);
        for (int i = 0; i < arr.length; i++)
            System.out.println(arr);


第二种情况:

//ComparableBean.java
import java.text.CollationKey;
import java.text.Collator;
import java.text.RuleBasedCollator;
import java.util.Comparator;

public class ComparableBean{
    private String name;
   
    public ComparableBean(String name) {
       
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}
class ComparableBeanComparator  implements Comparator//
{
    RuleBasedCollator collator; // you can set your rules for the instance "collator"
    public ComparableBeanComparator()
    {
        collator = (RuleBasedCollator)Collator.getInstance(java.util.Locale.CHINA);// try testing various locales
    }
    public int compare(Object obj1, Object obj2) {
        String tempname1 = ((ComparableBean) obj1).getName();
        String tempname2 = ((ComparableBean) obj2).getName();
       
        CollationKey c1 = collator.getCollationKey(tempname1);
        CollationKey c2 = collator.getCollationKey(tempname2);
//        return collator.compare(((CollationKey) c1).getSourceString(),
//                ((CollationKey) c2).getSourceString());
        return collator.compare(((CollationKey) c2).getSourceString(),
                ((CollationKey) c1).getSourceString());
    }
//    public int compare(ComparableBean obj1, ComparableBean obj2) {
//        String tempname1 = obj1.getName();
//        String tempname2 = obj2.getName();
//       
//        CollationKey c1 = collator.getCollationKey(tempname1);
//        CollationKey c2 = collator.getCollationKey(tempname2);
//        return collator.compare(((CollationKey) c1).getSourceString(),
//                ((CollationKey) c2).getSourceString());
//    }
}
//the end of ComparableBean.java


测试代码:


                  ComparableBean[] nameContent = { new ComparableBean("一切从实际出发"),
                new ComparableBean("立于不败之地"), new ComparableBean("多项式"),
                new ComparableBean("贯彻落实"), new ComparableBean("密切联系群众"),
                new ComparableBean("四项基本原则"), new ComparableBean("咬牙切齿"),
                new ComparableBean("恭恭敬敬"), new ComparableBean("民警"),
                new ComparableBean("经营承包责任制") };
        Arrays.sort(nameContent,new ComparableBeanComparator());
        for (int i = 0; i < nameContent.length; i++) {
            System.out.println(nameContent.getName());
        }


TAG:

 

评分:0

我来说两句

显示全部

:loveliness: :handshake :victory: :funk: :time: :kiss: :call: :hug: :lol :'( :Q :L ;P :$ :P :o :@ :D :( :)

日历

« 2008-08-31  
     12
3456789
10111213141516
17181920212223
24252627282930
31      

数据统计

  • 访问量: 7255
  • 日志数: 129
  • 建立时间: 2006-11-04
  • 更新时间: 2008-05-03

RSS订阅