當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java LocalTime format()用法及代碼示例


LocalTime類的format()方法用於使用作為參數傳遞的指定格式化程序來格式化此時間。此方法這次基於傳遞的格式化程序將其格式化為字符串。

用法:

public String format(DateTimeFormatter formatter)

參數:此方法接受單個參數格式器,它是指定的格式器。它不能為空。


返回值:此方法返回格式化的時間字符串。

異常:如果在打印過程中發生錯誤,則此方法將引發DateTimeException。

以下示例程序旨在說明format()方法:

示例1:

// Java program to demonstrate 
// LocalTime.format() method 
  
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a LocalTime Objects 
        LocalTime time 
            = LocalTime.parse("03:18:23"); 
  
        // create formatter Object 
        DateTimeFormatter formatter 
            = DateTimeFormatter.ISO_TIME; 
  
        // apply format 
        String value = time.format(formatter); 
  
        // print result 
        System.out.println("value : "
                           + value); 
    } 
}
輸出:
value : 03:18:23

示例2:

// Java program to demonstrate 
// LocalTime.format() method 
  
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a LocalTime Objects 
        LocalTime time 
            = LocalTime.parse("23:59:59"); 
  
        // create formatter Object for ISO_LOCAL_TIME 
        DateTimeFormatter formatter 
            = DateTimeFormatter.ISO_LOCAL_TIME; 
  
        // apply format 
        String value = time.format(formatter); 
  
        // print result 
        System.out.println("value : "
                           + value); 
    } 
}
輸出:
value : 23:59:59

參考: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#format(java.time.format.DateTimeFormatter)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 LocalTime format() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。