dataList.stream().sorted
时间: 2023-10-25 21:32:30 浏览: 121
dataList.stream().sorted((map1, map2) -> (Integer) map1.get("age") - (Integer) map2.get("age")).collect(Collectors.toList())是对dataList中的Map按照age属性进行排序的操作。这里使用了Java 8的新特性stream流的sorted方法,并传入一个Comparator比较器来指定排序的规则。Comparator的实现是通过比较两个Map的age属性来确定顺序。最后通过collect方法将排序后的结果收集到一个新的List中。<span class="em">1</span><span class="em">2</span><span class="em">3</span><span class="em">4</span>
相关问题
Map<String, TBmwyResolvedevicedata> sortedMap = dataList.stream() .sorted(Comparator.comparing(TBmwyResolvedevicedata::getEndTime)) .collect(Collectors.toMap(TBmwyResolvedevicedata::getEndTime, Function.identity(), (oldValue, newValue) -> oldValue, LinkedHashMap::new)); 转为List
要将这个 `Map` 转为 `List`,可以通过 `stream()` 方法将 `Map` 中的键值对转为 `Stream`,再通过 `map()` 方法将其转为 `List` 中的元素类型,最后通过 `collect()` 方法将 `Stream` 转为 `List`。
具体代码如下:
```
List<TBmwyResolvedevicedata> sortedList = sortedMap.entrySet().stream()
.map(Map.Entry::getValue)
.collect(Collectors.toList());
```
这段代码中,`sortedMap.entrySet()` 返回一个 `Set<Map.Entry<String, TBmwyResolvedevicedata>>`,其中每一个 `Map.Entry<String, TBmwyResolvedevicedata>` 包含一个键和一个值。调用 `stream()` 方法可以将其转为 `Stream<Map.Entry<String, TBmwyResolvedevicedata>>`。接下来通过 `map()` 方法将每个 `Map.Entry` 转为其值(即 `TBmwyResolvedevicedata`),最后通过 `collect()` 方法将 `Stream` 转为 `List`。
Map<String, List<TBmwyResolvedevicedata>> map = dataList.stream().collect(Collectors.groupingBy(TBmwyResolvedevicedata::getEndTime)); 按字符串key值进行升序排序大小
可以使用Java 8的Stream API中的sorted方法,结合Comparator.comparing方法来实现按字符串key值进行升序排序大小。代码如下:
```
Map<String, List<TBmwyResolvedevicedata>> sortedMap = dataList.stream()
.collect(Collectors.groupingBy(TBmwyResolvedevicedata::getEndTime))
.entrySet().stream()
.sorted(Map.Entry.comparingByKey())
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue,
(oldValue, newValue) -> oldValue, LinkedHashMap::new));
```
其中,Map.Entry.comparingByKey()方法返回一个比较器,用于按照Map中entry的key进行排序。最后使用LinkedHashMap保证排序后的Map的顺序不变。
阅读全文