public void testSimpleDateFormat() throws ParseException{
DateFormat dateFormat =
new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
Date date = new Date();
System.out.println(dateFormat.format(date));
String dateStr = "1990-12-12 12:12:12";
Date date2 = dateFormat.parse(dateStr);
System.out.println(date2);
}
你参考这个,就知道了,然后自己看看帮助文档就没问题了
Date格式
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date txtdate = new Date();
System.out.println("现在是:"+sdf.format(txtdate));
//"yyyy-MM-dd HH:mm:ss" 自定义格式
+08:00 代表东八区,在中国可以忽略。如果后面不是+8:00需要进行换算