public static List<String> getDuplicateElements(List<UnionResponseData> unionResponseData) {
return unionResponseData.stream()
.collect(Collectors.toMap(UnionResponseData::getBankOrderNo, e -> 1, Integer::sum)) // 获得元素出现频率的 Map,键为元素,值为元素出现的次数
.entrySet().stream() // Set<Entry>转换为Stream<Entry>
.filter(entry -> entry.getValue() > 1) // 过滤出元素出现次数大于 1 的 entry
.map(Map.Entry::getKey) // 获得 entry 的键(重复元素)对应的 Stream
.collect(Collectors.toList());// 转化为 List
}
标签:Map,stream,元素,List,次数,某个,entry
From: https://www.cnblogs.com/xyarch/p/16843701.html