方法 1: 利用JDK的Arrays类
[java] view plain copy
ico_fork.svg
1.5 KB
String str = "a,b,c";
List
方法 2: 利用Guava的Splitter
[java] view plain copy
ico_fork.svg
1.5 KB
String str = "a, b, c";
List
方法 3: 利用Apache Commons的StringUtils (只是用了split)
[java] view plain copy
ico_fork.svg
1.5 KB
String str = "a,b,c";
List