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


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


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

parse(CharSequence text)

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

用法:


public static LocalDateTime parse(CharSequence text)

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

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

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

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

示例1:

// Java program to demonstrate 
// LocalDateTime.parse() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an LocalDateTime object 
        LocalDateTime lt 
            = LocalDateTime 
                  .parse("2018-12-30T19:34:50.63"); 
  
        // print result 
        System.out.println("LocalDateTime : "
                           + lt); 
    } 
}
輸出:
LocalDateTime : 2018-12-30T19:34:50.630

parse(CharSequence text, DateTimeFormatter formatter)

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

用法:

public static LocalDateTime parse(CharSequence text, 
                                  DateTimeFormatter formatter)

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

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

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

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

// Java program to demonstrate 
// LocalDateTime.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_DATE_TIME; 
  
        // create an LocalDateTime object and 
        LocalDateTime lt 
            = LocalDateTime 
                  .parse("2018-12-30T19:34:50.63", 
                         formatter); 
  
        // print result 
        System.out.println("LocalDateTime : "
                           + lt); 
    } 
}
輸出:
LocalDateTime : 2018-12-30T19:34:50.630

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



相關用法


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