如果想输出自己想要的日期和时间格式,那就要用到SimpleDateFormat类,它是DateFormat类唯一的非抽象子类,它在显示日期和时间方面有强大的功能。比如要输出“星期日 2004.06.06 at 06:53:01 下午 CST”,只要显式地构造一个实例:SimpleDateFormat formatter=new SimpleDateFormat(“E yyyy.MM.dd ‘at’ hh:mm:ss a zzz”);
其中,E表示星期几;yyyy、MM、dd表示年、月、日;’at’指字符串”at”;hh:mm:ss表示时间;a表示A.M或P.M;zzz表示时区;
程序演示:
import java.util.*;
import java.text.*;
public class DateFormat {
public DateFormat() {
}
//在日期和时间模式字符串中,未加引号的字母 'A' 到 'Z' 和 'a' 到 'z' 被解释为模式字母,用来表示日期或时间字符串元素。
public String fotmatDate1(Date myDate) {
SimpleDateFormat formatter = new SimpleDateFormat ("yyyy年MM月dd日 HH时mm分ss秒");// 所以此处的表示格式的字母是不能随意改动的。
String strDate = formatter.format(myDate);
return strDate;
}
public String fotmatDate2(Date myDate) {
SimpleDateFormat formatter = new SimpleDateFormat ("yyyy年MM月dd日");
String strDate = formatter.format(myDate);
return strDate;
}
public String fotmatDate3(Date myDate) {
SimpleDateFormat formatter = new SimpleDateFormat ("yyyy-MM-dd HH:mm:ss");
String strDate = formatter.format(myDate);
return strDate;
}
public String fotmatDate4(Date myDate) {
SimpleDateFormat formatter = new SimpleDateFormat ("E yyyy.MM.dd 'at' hh:mm:ss a z");
String strDate = formatter.format(myDate);
return strDate;
}
public String fotmatDate5(Date myDate) {
SimpleDateFormat formatter = new SimpleDateFormat ("yyyy/MM/dd");
String strDate = formatter.format(myDate);
return strDate;
}
public String fotmatDate6(Date myDate) {
SimpleDateFormat formatter = new SimpleDateFormat ("MM-dd HH:mm");
String strDate = formatter.format(myDate);
return strDate;
}
public static void main(String args[]){
DateFormat dd=new DateFormat();
System.out.println("......"+new Date());
System.out.println(dd.fotmatDate1(new Date()));
System.out.println(dd.fotmatDate2(new Date()));
System.out.println(dd.fotmatDate3(new Date()));
System.out.println(dd.fotmatDate4(new Date()));
System.out.println(dd.fotmatDate5(new Date()));
System.out.println(dd.fotmatDate6(new Date()));
}
}
|