//字符串转换字符串数组
public static String[] split(String source){
if(source == null || source.trim().equals("")) return null;
//‘,’作为分隔符
StringTokenizer commaToker = new StringTokenizer(source, ", ");
String[] result = new String[commaToker.countTokens()];
int m=0;
while(commaToker.hasMoreTokens()){
result[m] = commaToker.nextToken();
m++;
}
return result;
}
String[] arr = str.split(",");
本文详细介绍了如何使用Java中的String类方法将字符串转换为字符串数组,包括代码实现及实例演示。
977

被折叠的 条评论
为什么被折叠?



