java對中文排序

來源:互聯網
上載者:User

第一種情況:

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[i]);

第二種情況:

//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//<ComparableBean>
{
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[i].getName());
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.