转自:http://kgd1120.iteye.com/blog/1293633 常规类型的格式化 String类的format()方法用于创建格式化的字符串以及连接多个字符串对象.熟悉C语言的读者应该记得C语言的sprintf()方法,两者有类似之处.format()方法有两种重载形式. l format(String format, Object... args) 该方法使用指定的字符串格式和参数生成格式化的新字符串. 新字符串始终使用本地语言环境.例如当前日期信息在中国语言环境中的…
String strs[] = "SS1BB2CC3".split("\\D+"); public static String Test(){ Date d = new Date(milli); String strs[] = "SS1BB2CC3".split("\\D+"); for (int i = 0; i < strs.length; i++) { System.out.println(strs[i]); }…