位置:首頁(yè) > 軟件操作教程 > 編程開(kāi)發(fā) > Java > 問(wèn)題詳情

Java DateFormat類(lèi)

提問(wèn)人:劉旭39發(fā)布時(shí)間:2020-11-28
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));

}

}

}`XT%08DK26DCNAJL]~NH[8.png

繼續(xù)查找其他問(wèn)題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部