日期:2014-05-20 浏览次数:20769 次
String str = "123 233 dfdf 8hfj"; String[] strs = str.split("\\s+"); for(String s : strs) { System.out.println(s); }