码迷,mamicode.com
首页 > 编程语言 > 详细

java字典序排序

时间:2016-12-12 20:12:13      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:rgs   gb2312   main   sort   print   object   ons   trace   ace   

import java.util.Comparator;
import java.util.ArrayList;
import java.util.Collections;
public class Tester {
 public static void main(String[] args) {
  ArrayList list = new ArrayList();
  list.add("东海湾");
  list.add("傲来");
  list.add("东海湾-岩洞");
  list.add("傲来药店");
  /*
   * 运用Collections的sort()方法对其进行排序 sort()方法需要传 连个参数,一个是需要进行排序的Collection 另一个是一个Comparator
   */
  Collections.sort(list, new SpellComparator());
  for (int i = 0; i < list.size(); i++) {
   System.out.println(list.get(i));
  }
 }
}
/**
 * 汉字拼音排序比较器
 */
class SpellComparator implements Comparator {
 public int compare(Object o1, Object o2) {
  try {
   // 取得比较对象的汉字编码,并将其转换成字符串
   String s1 = new String(o1.toString().getBytes("GB2312"), "ISO-8859-1");
   String s2 = new String(o2.toString().getBytes("GB2312"), "ISO-8859-1");
   // 运用String类的 compareTo()方法对两对象进行比较
   return s1.compareTo(s2);
  } catch (Exception e) {
   e.printStackTrace();
  }
  return 0;
 }
}

java字典序排序

标签:rgs   gb2312   main   sort   print   object   ons   trace   ace   

原文地址:http://www.cnblogs.com/firstdream/p/6165529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!