方法一:
ListintList = strList.stream().map(Integer::parseInt).collect(Collectors.toList());
方法二:
ListintList = strList.stream().mapToInt(Integer::parseInt).boxed().collect(Collectors.toList());

方法一:
ListintList = strList.stream().map(Integer::parseInt).collect(Collectors.toList());
方法二:
ListintList = strList.stream().mapToInt(Integer::parseInt).boxed().collect(Collectors.toList());