关于split的问题用字符 "| "来split貌似不行啊, 如下: String test = "aaa|bbb "; String[] temp = aa.split( "| "); 这样是无法分隔的,请问怎么改啊?[解决办法]| 是特殊字符吧 用 split( "\\| ") 转义以下