Java 中使用 M 格式格式化月份


“M”格式用來格式化月份,例如 1、2、3、4 等。我們將在此使用以下內容。

SimpleDateFormat("M");

我們來看一個示例 −

// displaying month with M format
simpleformat = new SimpleDateFormat("M");
String strMonth = simpleformat.format(new Date());
System.out.println("Month in M format = "+strMonth);

上面,我們使用了 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");
      System.out.println("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 month
      simpleformat = new SimpleDateFormat("M");
      String strMonth = simpleformat.format(new Date());
      System.out.println("Month in M format = "+strMonth);
      // current time
      simpleformat = new SimpleDateFormat("HH.mm.ss");
      String strTime = simpleformat.format(new Date());
      System.out.println("Current Time = "+strTime);
   }
}

輸出

Date and time = Mon, 26 Nov 2018 10:36:38
Current Date = 26/November/2018
Month in M format = 11
Current Time = 10.36.38

更新於:30-Jul-2019

203 次觀看

開啟你的職業生涯

完成課程即可獲得認證

開始
廣告