下面的实例是把map中的Value值根据中文名的拼音字母升序排序!
该类型自定义排序在项目中经常用到,
比如下拉框中的值(比如国家,中国放在首位)等等需要按照一定的规则显示。
以下是一个实例,其他类型的规则排序可以相应的在此基础上进行拓展!
import java.text.Collator;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
public class Test {
/**
* 把map中的Value值根据中文名的拼音字母升序排序
* @param args
*/
public static void main(String[] args) {
// 向map中添加测试值
Map<String, String> map = new HashMap<String, String>();
map.put("1", "张三");
map.put("3", "李四");
map.put("2", "王五");
map.put("5", "宋柳");
map.put("4", "者许");
// 通过ArrayList的构造方法,把map转换成泛型Map.Entry<String, String>键值对形式的list集合
List<Map.Entry<String, String>> list = new ArrayList<Map.Entry<String, String>>(map.entrySet());
// 通过自定义Comparator排序
Collections.sort(list, newComparator<Map.Entry<String, String>>() {
public int compare(Map.Entry<String, String> m1, Map.Entry<String, String> m2) {
return Collator.getInstance(Locale.CHINESE).compare(m1.getValue(), m2.getValue());
}
});
// 测试排序后的结果
Iterator<Map.Entry<String, String>> it = list.iterator();
Map.Entry<String, String> tempMap = null;
while (it.hasNext()) {
tempMap = it.next();
System.out.println(tempMap.getValue());
}
}
}
运行结果:
李四
宋柳
王五
张三
者许
以上,仅供参考!