1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| @Test public void date() throws ParseException {
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat(); sdf.applyPattern("yyyy-MM-dd hh:mm");
String time = sdf.format(date);
System.out.println("字符串类型:" + time);
Date parse = sdf.parse(time);
System.out.println("Date类型:" + parse); }
|