Java中的split和join

Javascript中的用于字符串和数组之间转换的split和join函数使用起来非常方便,在Java中也有这两个函数,只不过join是在apache commons的lang库里实现的。

 import org.apache.commons.lang3.StringUtils;

 public class SplitJoin {
public static void main(String[] args){
String str = "a|b|c|d|e|f|g";
String[] strArray = str.split("[|]");
for(int i=0; i<strArray.length; i++){
System.out.println(strArray[i]);
}
System.out.println(StringUtils.join(strArray, "|"));
}
}

输出结果:

 a
b
c
d
e
f
g
a|b|c|d|e|f|g
上一篇:CentOS squid代理内网主机上网 openVpn配置


下一篇:单例模式——java设计模式