//时间初始化需要实例一个Date类对象
Date date = new Date();
//full格式的日期格式器对象
DateFormat fullFormat = DateFormat.getDateInstance(DateFormat.FULL);
//long格式
DateFormat longFormat = DateFormat.getDateInstance(DateFormat.LONG);
//medium格式的日期/时间 格式器对象
DateFormat mediumFormat = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM);
//short格式的日期/时间格式对象
DateFormat shortFormat = DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT);
//用String format(Date date)返回String,打印
System.out.println(longFormat.format(date));////2015-10-24 23:10:31
System.err.println(mediumFormat.format(date));//2015年10月24日
System.out.println(shortFormat.format(date));//15-10-24 下午11:10
System.out.println(fullFormat.format(date));//2015年10月24日 星期六
|
|