您的位置:首页 > 产品设计 > UI/UE

对Map中数据,按value值排序方法

2012-12-24 13:45 381 查看
1.Map<String,Integer>类型

//声明
Map<String,Integer> hashMap = new HashMap<String,Integer>();
//向Map中添加数据
//.....
//转换
ArrayList<Entry<String, Integer>> arrayList = new ArrayList<Entry<String, Integer>>(
hashMap.entrySet());
//排序
Collections.sort(arrayList, new Comparator<Map.Entry<String, Integer>>() {
public int compare(Map.Entry<String, Integer> map1,
Map.Entry<String, Integer> map2) {
return (map2.getValue() - map1.getValue());
}
});
//输出
for (Entry<String, Integer> entry : arrayList) {
System.out.println(entry.getKey() + "\t" + entry.getValue());
}


2.Map<String,Float>类型

//声明
Map<String,Float> hashMap = new HashMap<String,Float>();
//向Map中添加数据
//.....
//转换
ArrayList<Entry<String, Float>> arrayList = new ArrayList<Map.Entry<String,Float>>(hashMap.entrySet());
//排序
Collections.sort(arrayList, new Comparator<Map.Entry<String, Float>>(){
public int compare(Map.Entry<String, Float> map1,
Map.Entry<String,Float> map2) {
return ((map2.getValue() - map1.getValue() == 0) ? 0
: (map2.getValue() - map1.getValue() > 0) ? 1
: -1);
}
});
//输出
for (Entry<String, Float> entry : arrayList) {
System.out.println(entry.getKey() + "\t" + entry.getValue());
}


3.Map<String,Double>类型

//声明
Map<String,Double> hashMap = new HashMap<String,Double>();
//向Map中添加数据
//.....
//转换
ArrayList<Entry<String, Double>> arrayList = new ArrayList<Map.Entry<String,Double>>(hashMap.entrySet());
//排序
Collections.sort(arrayList, new Comparator<Map.Entry<String, Double>>(){
public int compare(Map.Entry<String, Double> map1,
Map.Entry<String,Double> map2) {
return ((map2.getValue() - map1.getValue() == 0) ? 0
: (map2.getValue() - map1.getValue() > 0) ? 1
: -1);
}
});
//输出
for (Entry<String, Double> entry : arrayList) {
System.out.println(entry.getKey() + "\t" + entry.getValue());
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: