java.time.ZonedDateTime ofLocal()方法
java.time.ZonedDateTime.ofLocal(LocalDateTime localDateTime,ZoneId zone,ZoneOffset preferredOffset)方法使用首选偏移量从本地日期时间获取ZonedDateTime的实例。
1 语法
public static ZonedDateTime ofLocal(LocalDateTime localDateTime, ZoneId zone, ZoneOffset preferredOffset)
2 参数
localDateTime:本地日期时间,不为null。
zone:时区,不为null。
preferredOffset:区域偏移量,如果没有首选项,则为null。
3 返回值
分区日期时间,不为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.ZonedDateTime ofLocal()方法
*/
import java.time.LocalDateTime;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
import java.time.ZoneId;
public class ZonedDateTimeDemo {
public static void main(String[] args) {
ZonedDateTime date = ZonedDateTime.ofLocal(LocalDateTime.now(), ZoneId.systemDefault(),ZoneOffset.UTC );
System.out.println(date);
}
}
输出结果为:
2017-03-28T14:06:01.451+05:30[Asia/Calcutta]
热门文章
优秀文章