String分割成int[]和List


int[]
int[] ids= StringUtil.isEmpty(classIds)?null:Arrays.stream(classIds.split(",")).mapToInt(Integer::parseInt).toArray();

 

 
List<Integer>
List<Integer> collect = StringUtil.isEmpty(classIds)?null:Arrays.stream(classIds.split(",")).mapToInt(Integer::parseInt).boxed().collect(Collectors.toList());

 

 
上一篇:RENIX报文字段跳变——网络测试仪实操


下一篇:Java8新特性之Stream API