工具类

Posted astech

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了工具类相关的知识,希望对你有一定的参考价值。

//map转List
private List<CityForQmi> mapTransitionList(Map<String, CityForQmi> map) {

List<CityForQmi> list = new ArrayList<>();
Iterator item = map.entrySet().iterator(); // 获得map的Iterator
while (item.hasNext()) {
Entry<String, CityForQmi> entry = (Entry) item.next();
list.add(entry.getValue());
}
return list;
}

 

//Map降序排序
private <K, V extends Comparable<? super V>> Map<K, V> sortByValueDescending(Map<K, V> map)
{
List<Map.Entry<K, V>> list = new LinkedList<>(map.entrySet());
Collections.sort(list, (o1, o2) -> {
int compare = (o1.getValue()).compareTo(o2.getValue());
return -compare;
});

Map<K, V> result = new LinkedHashMap<>();
for (Map.Entry<K, V> entry : list) {
result.put(entry.getKey(), entry.getValue());
}
return result;
}























以上是关于工具类的主要内容,如果未能解决你的问题,请参考以下文章

字符串工具类数组工具类集合工具类转型操作工具类编码与解码操作工具类

FlutterUtils 工具库

java 啥叫工具类

BeanUtil 好用的工具类

Spring 常用工具类

java工具类怎么定义