Java DateFormat類(lèi)
DateFormat類(lèi)是Java.text包提供的、用以日期時(shí)間格式化的抽象類(lèi)。它提供了很多方法和可供參 考的格式化風(fēng)格,如FULL、LONG、MEDIUM和SHORT。我們?cè)陂_(kāi)發(fā)中可以直接使用這些常量。
import java.sql.Date;
import java.text.DateFormat;
import java.util.Calendar;
//DateFormat格式化風(fēng)格
public class DateFormatDemo{
public static void main(String[] args) {
Date now = new Date(0);
DateFormat dateFormat = DateFormat.getDateInstance();
System.out.println("(Default)今天日期為:"+dateFormat.format(now));
dateFormat = DateFormat.getDateInstance(DateFormat.SHORT);
System.out.println("(SHORT)今天日期為:"+dateFormat.format(now));
dateFormat = DateFormat.getDateInstance(DateFormat.MEDIUM);
System.out.println("(MEDIUM)今天日期為:"+dateFormat.format(now));
dateFormat = DateFormat.getDateInstance(DateFormat.LONG);
System.out.println("(LONG)今天日期為:"+dateFormat.format(now));
dateFormat = DateFormat.getDateInstance(DateFormat.FULL);
System.out.println("(FULL)今天日期為:"+dateFormat.format(now));
}
}
點(diǎn)擊加載更多評(píng)論>>