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


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


Instant類的parse()方法有助於從作為參數傳遞的字符串值中獲取Instant的實例。該字符串是UTC時區中的一個瞬間。使用DateTimeFormatter.ISO_INSTANT對其進行解析。

用法:

public static Instant 
    parse(CharSequence text)

參數:此方法接受一個參數文本,該參數文本是即時分析的文本。它不能為空。


返回值:此方法返回一個Instant,這是作為參數傳遞的String的UTC時間xone中的有效瞬時。

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

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

示例1:

// Java program to demonstrate 
// Instant.parse() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // get Instant using parse method 
        Instant instant 
            = Instant.parse("2018-11-30T18:35:24.00Z"); 
  
        // print result 
        System.out.println("Instant: "
                           + instant); 
    } 
}
輸出:
Instant: 2018-11-30T18:35:24Z

示例2:

// Java program to demonstrate 
// Instant.parse() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // get Instant using parse method 
        Instant instant 
            = Instant.parse("2019-10-01T08:25:24.00Z"); 
  
        // print result 
        System.out.println("Instant: "
                           + instant); 
    } 
}
輸出:
Instant: 2019-10-01T08:25:24Z

參考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#parse(java.lang.CharSequence)



相關用法


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