Java Map 分别按Key和Value排序的测试代码

Java Map 分别按Key和Value排序的测试代码

1、按键排序(sort by key)

采用TreeMap<K,V>,向其构造方法 TreeMap(Comparator<? super K> comparator)  传入我们自定义的比较器即可实现按键排序。

2、按值排序(sort by value)

原理:将待排序Map中的所有元素置于一个列表中,接着使用Collections的一个静态方法 sort(List<T> list, Comparator<? super T> c) 来排序列表,同样是用比较器定义比较规则。排序后的列表中的元素再依次装入Map,为了肯定的保证Map中元素与排序后的List中的元素的顺序一致,使用了LinkedHashMap数据类型。

完整代码示例:

package com.swordfall.invoking;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.TreeMap;

public class testmap {
	
//MAP按key,value排序	


	    public static void main(String[] args) {

	        Map<String, String> map = new TreeMap<String, String>();

	        map.put("pageNum", "2");
	        map.put("pageSize", "50");
	        map.put("username", "test");
	        map.put("uaerkey", "123");

	        Map<String, String> resultMap = sortMapByKey(map);    //按Key进行排序
	        System.out.println(resultMap.toString()); 
	        for (Map.Entry<String, String> entry : resultMap.entrySet()) {
	            System.out.println(entry.getKey() + " " + entry.getValue());
	        }
	        
	        
	        Map<String, String> resultMap1 = sortMapByValue(map); //按Value进行排序

	        for (Map.Entry<String, String> entry : resultMap1.entrySet()) {
	            System.out.println(entry.getKey() + " " + entry.getValue());
	        }
	    }
	    
	    /**
	     * 使用 Map按key进行排序
	     * @param map
	     * @return
	     */
	    public static Map<String, String> sortMapByKey(Map<String, String> map) {
	        if (map == null || map.isEmpty()) {
	            return null;
	        }

	        Map<String, String> sortMap = new TreeMap<String, String>(
	                new MapKeyComparator());

	        sortMap.putAll(map);

	        return sortMap;
	    }

	    /**
	     * 使用 Map按value进行排序
	     * @param map
	     * @return
	     */
	    public static Map<String, String> sortMapByValue(Map<String, String> oriMap) {
	        if (oriMap == null || oriMap.isEmpty()) {
	            return null;
	        }
	        Map<String, String> sortedMap = new LinkedHashMap<String, String>();
	        List<Map.Entry<String, String>> entryList = new ArrayList<Map.Entry<String, String>>(
	                oriMap.entrySet());
	        Collections.sort(entryList, new MapValueComparator());

	        Iterator<Map.Entry<String, String>> iter = entryList.iterator();
	        Map.Entry<String, String> tmpEntry = null;
	        while (iter.hasNext()) {
	            tmpEntry = iter.next();
	            sortedMap.put(tmpEntry.getKey(), tmpEntry.getValue());
	        }
	        return sortedMap;
	    }
 
	    
	    

}
	//按key的比较器类 
	class  MapKeyComparator implements Comparator<String>{

	    @Override
	    public int compare(String str1, String str2) {
	        
	        return str1.compareTo(str2);
	    }
	}
        //按value的比较器类 
	class MapValueComparator implements Comparator<Map.Entry<String, String>> {

	    @Override
	    public int compare(Entry<String, String> me1, Entry<String, String> me2) {

	        return me1.getValue().compareTo(me2.getValue());
	    }
	}

输出结果如下:


备注:实战示例,解疑答惑。

           --不间端地思考,实时地批判你的工作!

发布了26 篇原创文章 · 获赞 30 · 访问量 3539

猜你喜欢

转载自blog.csdn.net/ydyuse/article/details/104936992