本文主要是介绍java ListMap排序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
list.stream().sorted(Comparator.comparing(map -> Integer.parseInt(map.get("monthtime").toString()))).collect(Collectors.toList());
List<Map<String, Object>> lista = list.stream().sorted(Comparator.comparing(map -> Integer.parseInt(map.get("aa").toString()))).collect(Collectors.toList());
List<Map<String, Object>> sScore = lstMap.stream().sorted(
Comparator.comparing(
m -> {
BigDecimal sScore1 = Convert.toBigDecimal(m.get("sScore").toString());
return sScore1;
})
).collect(Collectors.toList());
Collections.reverse(sScore);
这篇关于java ListMap排序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!