//日期格式化public static void test12() throws Exception{String str = "2014-07-09 10:48:23";Date d = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(str);System.out.println(d);}
什么语言?