java map里面进行ASCII 码从小到大排序(字典序)

2021-05-08 13:30

阅读:487

标签:tor   ids   pareto   map   stat   object   int   static   oid   

public static String getAsciiSort(Map map) {
List> infoIds = new ArrayList>(map.entrySet());
// 对所有传入参数按照字段名的 ASCII 码从小到大排序(字典序)
Collections.sort(infoIds, new Comparator>() {
public int compare(Map.Entry o1, Map.Entry o2) {
return ((String) o1.getKey()).compareToIgnoreCase((String) o2.getKey());
}
});
}

java map里面进行ASCII 码从小到大排序(字典序)

标签:tor   ids   pareto   map   stat   object   int   static   oid   

原文地址:https://www.cnblogs.com/qq1141100952com/p/13177714.html


评论


亲,登录后才可以留言!