以 h(上午/下午 1-12)格式顯示 Java 中的時間


Java 日期中的 h 格式類似於 AM/PM 中的 1-12 小時。使用 SimpleDateFormat("h") 以獲取相同的格式;

// displaying hour in h format
SimpleDateFormat simpleformat = new SimpleDateFormat("h");
String strHour = simpleformat.format(new Date());
System.out.println("Hour in h format = "+strHour);

上述,我們使用過 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);
      // current time
      simpleformat = new SimpleDateFormat("HH.mm.ss Z");
      String strTime = simpleformat.format(new Date());
      System.out.println("Current Time = "+strTime);
      // displaying hour in h format
      simpleformat = new SimpleDateFormat("h");
      String strHour = simpleformat.format(new Date());
      System.out.println("Hour in h format = "+strHour);
   }
}

輸出

Today's date and time = Mon, 26 Nov 2018 09:52:22 +0000
Current Date = 26/November/2018
Current Time = 09.52.22 +0000
Hour in h format = 9

更新於: 30-Jul-2019

230 次瀏覽

開啟你的 職業

完成課程並獲得認證

馬上開始
廣告
© . All rights reserved.