例子:String path = "123.456.789";
如果要使用“.”将path分割成String[],
path.split("//.");
or
path.split("//.");
split中传入的是正则表达式,则需要对特殊符号进行转义,但是在实际使用过程中,有时会出现无法分割的情况。
可以使用org.apache.commons.lang.StringUtils.split(path,".")方法。
原文地址:https://www.cnblogs.com/helloworld-yjh/p/9661383.html
时间: 2024-10-03 22:40:02