以 KK (00-11) 格式在 Java 中顯示小時


Java Date 中的 “KK” 格式用於以 00-11 的方式顯示小時。使用 SimpleDateFormat("KK") 來獲得相同的格式 −

// displaying hour in KK format
SimpleDateFormat simpleformat = new SimpleDateFormat("KK");
String strHour = simpleformat.format(new Date());
System.out.println("Hour in KK 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");
      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);
      // current time
      simpleformat = new SimpleDateFormat("HH.mm.ss");
      String strTime = simpleformat.format(new Date());
      System.out.println("Current Time = "+strTime);
      // displaying hour in KK format
      simpleformat = new SimpleDateFormat("KK");
      String strHour = simpleformat.format(new Date());
      System.out.println("Hour in KK format = "+strHour);
   }
}

輸出

Date and time = Mon, 26 Nov 2018 10:21:32
Current Date = 26/November/2018
Current Time = 10.21.32
Hour in KK format = 10

更新時間: 2019 年 7 月 30 日

163 次瀏覽

開啟您的 職業生涯

完成課程,獲得認證

開始吧
廣告
© . All rights reserved.