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 - 要解析的文字,而不是null
。
瞬間,不是null
。
DateTimeException
- 如果無法解析文字。
以下範例顯示了java.time.Instant.parse(CharSequence text)
方法的用法。
package com.yiibai;
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