Bootstrap

Java按照'.'进行切分字符串

Java的String.split()方法在以'.'分割字符串的时候,需要加上转义字符。如下面所示。

String[] strs = objectKey.split("\\.");

 

 

;