我有返回Map<String,String>
的API,需要转换为DTO。
SubjectIdAndNameDTO (id, name constructor args)
id
name
使用传统for循环和Map.EnterSet的当前实现。我如何使用Java8的功能来简化以下代码。
Map<String, String> map = getSubjectIdAndNameMap();
// How can this code can be improved by using Java8 Stream and method references
List<SubjectIdAndNameDTO> subIdNameDTOList = new ArrayList<>();
for (Entry<String, String> keyset : map.entrySet()) {
SubjectIdAndNameDTO subjectIdNameDTO =
new SubjectIdAndNameDTO(keyset.getKey(), keyset.getValue());
subIdNameDTOList.add(subjectIdNameDTO);
}
答案 0 :(得分:3)
试试这个
map.entrySet()
.stream()
.map(m->new SubjectIdAndNameDTO(m.getKey(), m.getValue()))
.collect(Collectors.toList());
或@Eugene建议使用
...collect(Collectors.toCollection(ArrayList::new));
也请访问this。