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


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


在LocalTime類中,根據傳遞給它的參數,有兩種類型的parse()方法。

parse(CharSequence text)

LocalTime類的parse()方法用於從作為參數傳遞的字符串(例如“ 10:15:45”)中獲取LocalTime的實例。該字符串必須具有有效的日期時間,並使用DateTimeFormatter.ISO_LOCAL_TIME進行了解析。

用法:


public static LocalTime parse(CharSequence text)

參數:此方法僅接受一個參數文本,該參數文本是在LocalTime中解析的文本。它不能為空。

返回值:此方法返回LocalTime,它是解析的本地日期時間。

異常:如果無法解析文本,則此方法將引發DateTimeParseException。

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

// Java program to demonstrate 
// LocalTime.parse() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an LocalTime object 
        LocalTime lt 
            = LocalTime.parse("10:15:45"); 
  
        // print result 
        System.out.println("LocalTime : "
                           + lt); 
    } 
}
輸出:
LocalTime : 10:15:45

parse(CharSequence text, DateTimeFormatter formatter)

LocalTime類的parse()方法用於從使用特定格式器作為參數傳遞的字符串(例如“ 10:15:45”)中獲取LocalTime的實例。日期時間使用特定格式器進行解析。

用法:

public static LocalTime parse(CharSequence text,
                              DateTimeFormatter formatter)

參數:此方法接受兩個參數text(即要解析的文本)和formatter(要使用的格式化程序)。

返回值:此方法返回LocalTime,它是解析的本地日期時間。

異常:如果無法解析文本,則此方法將引發DateTimeParseException。

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

// Java program to demonstrate 
// LocalTime.parse() method 
  
import java.time.*; 
import java.time.format.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a formater 
        DateTimeFormatter formatter 
            = DateTimeFormatter.ISO_LOCAL_TIME; 
  
        // create an LocalTime object and 
        LocalTime lt 
            = LocalTime 
                  .parse("10:15:45", 
                         formatter); 
  
        // print result 
        System.out.println("LocalTime : "
                           + lt); 
    } 
}
輸出:
LocalTime : 10:15:45

參考文獻:
https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#parse(java.lang.CharSequence)
https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#parse(java.lang.CharSequence,java.time.format.DateTimeFormatter)



相關用法


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