说没用。给你几行代码你自己跑跑就能体会到了。 String aa = "a,b,c,d,e,f"; String[] bb = aa.split(","); for (int i = 0; i < bb.length; i++) { System.out.println(bb[i]); }