java.time.OffsetDateTime parse()方法
java.time.OffsetDateTime.parse(CharSequence text)方法从类似2017-02-03T10:15:30 + 01:00的文本字符串中获取OffsetDateTime的实例。
1 语法
public static OffsetDateTime parse(CharSequence text)
2 参数
text:要解析的文本,例如"2017-02-03T10:15:30 + 01:00",而不是null。
3 返回值
本地日期,不为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.OffsetDateTime parse()方法
*/
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
热门文章
优秀文章