java.time.ZonedDateTime toOffsetDateTime()方法
java.time.ZonedDateTime.toOffsetDateTime()方法将此日期时间转换为OffsetDateTime。
1 语法
public OffsetDateTime toOffsetDateTime()
2 参数
无
3 返回值
偏移日期时间,表示相同的本地日期时间和偏移量,不为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.ZonedDateTime toOffsetDateTime()方法
*/
import java.time.ZonedDateTime;
public class ZonedDateTimeDemo {
public static void main(String[] args) {
ZonedDateTime date = ZonedDateTime.now();
System.out.println(date.toOffsetDateTime());
}
}
输出结果为:
2017-03-28T15:45:22.794+05:30
热门文章
优秀文章