AI智能
改变未来

JDK8 List<String>与List<Integer>相互转换

List<Integer>转换为List<string>
List<String> stringList = intList.stream().map(String::valueOf).collect(Collectors.toList());

List<String>转换为List<Integer>   
List<Integer> codesInteger = codes.stream().map(Integer::parseInt).collect(Collectors.toList());

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » JDK8 List<String>与List<Integer>相互转换