java util包排序,利用stream sorted进行降序排序

根据value值的大小进行降序排序,并进行截取。

public static void main(String[] args) {

List> list = Lists.newArrayList();

Map map = Maps.newHashMap();

map.put("id", 1);

map.put("value", 20);

list.add(map);

map = Maps.newHashMap();

map.put("id", 2);

map.put("value", 80);

list.add(map);

map = Maps.newHashMap();

map.put("id", 3);

map.put("value", 21);

list.add(map);

map = Maps.newHashMap();

map.put("id", 4);

map.put("value", 28);

list.add(map);

System.out.println("原始数据:"+list);

//根据value进行排序 得到升序排列

list.sort(Comparator.comparing(h -> ConvertUtil.obj2Integer(h.get("value"))));

//颠倒排序,变为降序排列

Collections.reverse(list);

//截取前3个

System.out.println("结果"+list.subList(0, 3));

}

使用1.8 stream处理

List>result = list.stream().sorted((h1, h2) ->

//降序

ConvertUtil.obj2Integer(h2.get("value")).compareTo(ConvertUtil .obj2Integer(h1.get("value"))))

//前3个

.limit(3)

//终止流

.collect(Collectors.toList());

System.out.println("流结果"+result );

运行结果:

原始数据:

[{id=1, value=20}, {id=2, value=80}, {id=3, value=21}, {id=4, value=28}]

你可能感兴趣的:(java,util包排序)