List中某个元素出现次数
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
}