摘要: public class SplitEmptyString { /** * @param args */ public static void main(String[] args) { // 空串的测试 String[] split1 = "".split(","); System.out.println(split1 + "||" + split1.length); for (String s : split1) { System.out.println("split1:" + s);... 阅读全文
posted @ 2013-07-06 06:53 一度君ヾ華 阅读(3816) 评论(0) 推荐(0) 编辑