Date date = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy年MM月dd日,EEEE HH:mm:ss ");
String nowDate = formatter.format(date);
System.out.println(nowDate);
//指定时区的时间
DateFormat df = DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL,Locale.CHINA);
System.out.println(df.format(date));
}
yyyy为年,MM为月,dd为日,EEEE为星期几,HH:mm:ss为时:分:秒
打印结果:
2015年05月24日,星期日 22:36:00
2015年5月24日 星期日 下午10时36分00秒 CST
时间: 2024-11-05 02:35:59