前段时间从csdn 上看到了一个问题。 有个网友解答的很巧妙。
以下是问题原型,我对其中做了一些修改。
java 可以按照 HashMap 中的 key 或者 value 来进行排序。
import java.util.*; public class MapTest { public static void main(String[] args) { Map<String, Integer> map = new HashMap<String, Integer>(); map.put("d", 2); map.put("c", 1); map.put("b", 4); map.put("a", 3); List<Map.Entry<String, Integer>> infoIds = new ArrayList<Map.Entry<String, Integer>>(map.entrySet()); // 对HashMap中的key 进行排序 Collections.sort(infoIds, new Comparator<Map.Entry<String, Integer>>() { public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) { // System.out.println(o1.getKey()+" === "+o2.getKey()); return (o1.getKey()).toString().compareTo(o2.getKey().toString()); } }); // 对HashMap中的key 进行排序后 显示排序结果 for (int i = 0; i < infoIds.size(); i++) { String id = infoIds.get(i).toString(); System.out.print(id + " "); } System.out.println(); // 对HashMap中的 value 进行排序 Collections.sort(infoIds, new Comparator<Map.Entry<String, Integer>>() { public int compare(Map.Entry<String, Integer> o1, Map.Entry<String, Integer> o2) { return (o1.getValue()).toString().compareTo(o2.getValue().toString()); } }); // 对HashMap中的 value 进行排序后 显示排序结果 for (int i = 0; i < infoIds.size(); i++) { String id = infoIds.get(i).toString(); System.out.print(id + " "); } } }
以下是问题链接地址: http://topic.csdn.net/u/20110621/18/db4e6e64-da20-4933-8fa3-3b5a870d71ff.html?29502
有个叫做 exterminator 的朋友解答的很巧妙。
版权属于: 技术客
官方地址: http://www.sunjs.com
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。