java.time.OffsetDateTime.parse(CharSequence text)
方法從類似2017-02-03T10:15:30 + 01:00
的文字字串中獲取OffsetDateTime
的範例。
以下是java.time.OffsetDateTime.parse(CharSequence text)
方法的宣告。
public static OffsetDateTime parse(CharSequence text)
text
- 要解析的文字,例如"2017-02-03T10:15:30 + 01:00"
,而不是null
。本地日期,不為null
。
DateTimeParseException
- 如果無法解析文字。以下範例顯示了java.time.OffsetDateTime.parse(CharSequence text)
方法的用法。
package com.yiibai;
import java.time.OffsetDateTime;
public class OffsetDateTimeDemo {
public static void main(String[] args) {
OffsetDateTime date = OffsetDateTime.parse("2017-02-03T10:15:30+01:00");
System.out.println(date);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-02-03T10:15:30+01:00