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


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


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

parse(CharSequence text)

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

用法:


public static LocalTime parse(CharSequence text)

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

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

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

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

// LocalDate.parse() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an LocalDate object 
        LocalDate lt 
            = LocalDate.parse("2018-12-27"); 
  
        // print result 
        System.out.println("LocalDate : "
                           + lt); 
    } 
}
輸出:
LocalDate : 2018-12-27

parse(CharSequence text, DateTimeFormatter formatter)

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

用法:

public static LocalTime parse(CharSequence text,
                              DateTimeFormatter formatter)

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

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

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

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

// Java program to demonstrate 
// LocalDate.parse() method 
  
import java.time.*; 
import java.time.format.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a formater 
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd MMM uuuu"); 
  
        // create a LocalDate object and 
        LocalDate lt 
            = LocalDate.parse("31 Dec 2018", formatter); 
  
        // print result 
        System.out.println("LocalDate : "
                           + lt.toString()); 
    } 
}
輸出:
LocalDate : 2018-12-31

參考文獻:
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大神的英文原創作品 LocalDate parse() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。