java.time.Instant.parse() 方法
描述
java.time.Instant.parse(CharSequence text) 方法从 2007-12-03T10:15:30.00Z 等文本字符串中获取 Instant 的实例。
声明
以下是 java.time.Instant.parse(CharSequence text) 方法的声明。
public static Instant parse(CharSequence text)
参数
text − 要解析的文本,不为空。
返回值
瞬间,不为空。
异常
DateTimeException − 如果文本无法解析。
示例
下面的例子展示了 java.time.Instant.parse(CharSequence text) 方法的使用。
package com.tutorialspoint; import java.time.Instant; public class InstantDemo { public static void main(String[] args) { Instant instant = Instant.parse("2017-02-03T10:37:30.00Z"); System.out.println(instant); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
2017-02-03T10:37:30Z