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)
相关用法
- Java Instant until()用法及代码示例
- Java Instant from()用法及代码示例
- Java Instant now()用法及代码示例
- Java Instant plus()用法及代码示例
- Java Instant with()用法及代码示例
- Java Instant get()用法及代码示例
- Java Instant toString()用法及代码示例
- Java Instant range()用法及代码示例
- Java Instant plusSeconds()用法及代码示例
- Java Instant ofEpochMilli()用法及代码示例
- Java Instant plusMillis()用法及代码示例
- Java Instant minusNanos()用法及代码示例
- Java 8 Clock instant()用法及代码示例
- Java Instant query()用法及代码示例
- Java Instant minus()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Instant parse() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。