在 Java 中使用 SimpleDateFormat 來設定星期幾格式


E 格式用於 Java 中的 Date 設定星期幾的格式,例如週一、週二、週三等。讓我們使用它。

// displaying day of week
SimpleDateFormat simpleformat = new SimpleDateFormat("E");
String strDayofWeek = simpleformat.format(new Date());
System.out.println("Day of Week = "+strDayofWeek);

上面,我們使用了 SimpleDateFormat 類,因此匯入了以下程式包 −

import java.text.SimpleDateFormat;

以下是一個示例 −

範例

 現場演示

import java.text.Format;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Calendar;
public class Demo {
   public static void main(String[] args) throws Exception {
      // displaying current date and time
      Calendar cal = Calendar.getInstance();
      SimpleDateFormat simpleformat = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss Z");
      System.out.println("Today's date and time = "+simpleformat.format(cal.getTime()));
      // displaying date
      simpleformat = new SimpleDateFormat("dd/MMMM/yyyy");
      String str = simpleformat.format(new Date());
      System.out.println("Current Date = "+str);
      // displaying day of week
      simpleformat = new SimpleDateFormat("E");
      String strDayofWeek = simpleformat.format(new Date());
      System.out.println("Day of Week = "+strDayofWeek);
      // current time
      simpleformat = new SimpleDateFormat("HH.mm.ss Z");
      String strTime = simpleformat.format(new Date());
      System.out.println("Current Time = "+strTime);
   }
}

輸出

Today's date and time = Mon, 26 Nov 2018 09:37:56 +0000
Current Date = 26/November/2018
Day of Week = Mon
Current Time = 09.37.56 +0000

更新日期: 2019 年 7 月 30 日

231 次瀏覽

開始你的 職業

透過完成本課程獲得認證

開始
廣告
© . All rights reserved.