Bootstrap

java分割String字符串成list

示例:

String sn =1234,567,8910;
List<String> snList = Arrays.asList(sn.split(","));
;