java.time.ZonedDateTime ofStrict()方法

java.time.ZonedDateTime.ofStrict(LocalDateTime localDateTime,ZoneOffset offset,ZoneId zone)方法获取ZonedDateTime的实例,严格验证本地日期时间,偏移量和区域ID的组合。

1 语法

public static ZonedDateTime ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone)

2 参数

localDateTime:本地日期时间,不为null。

offset:区域偏移量,不为null。

zone:时区,不为null。

3 返回值

分区日期时间,不为null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.ZonedDateTime ofStrict()方法
 */
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.ofStrict(LocalDateTime.now(), ZoneOffset.UTC, ZoneId.of("Z"));
      System.out.println(date);  
   }
}

输出结果为:

2017-03-28T14:12:19.482Z

 

热门文章

优秀文章