首页 > 技术文章 > java8 字符串转换 list long Integer

tonyauto 2017-12-29 11:10 原文

1   
2 String ids= "1,2,3,4,5,6";  
3 List<Long> listIds = Arrays.asList(ids.split(",")).stream().map(s -> Long.parseLong(s.trim())).collect(Collectors.toList());  
4 System.out.println(Arrays.toString(listIds .toArray()));//[1,2,3,3,4,5,6]  

//You can use the Lambda functions of Java 8 to achieve this without looping
//来自:http://stackoverflow.com/questions/19946980/convert-string-to-listlong

推荐阅读