java.util.regex.PatternSyntaxException: Syntax error U_REGEX_RULE_SYNTAX near index 1
str = bundle.getString("location").split("+");
改为
str = bundle.getString("location").split("\\+");
或者
str = bundle.getString("location").split("[+]");
java.util.regex.PatternSyntaxException: Syntax error U_REGEX_RULE_SYNTAX near index 1
str = bundle.getString("location").split("+");
改为
str = bundle.getString("location").split("\\+");
或者
str = bundle.getString("location").split("[+]");
2239
4187
5943

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