- java.time 包类
- java.time - 首页
- java.time - 时钟
- java.time - 持续时间
- java.time - 瞬间
- java.time - 本地日期
- java.time - 本地日期时间
- java.time - 本地时间
- java.time - 月日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 周期
- java.time - 年
- java.time - 年月
- java.time - 区域日期时间
- java.time - 区域 ID
- java.time - 区域偏移量
- java.time 包枚举
- java.time - 月
- java.time 有用资源
- java.time - 讨论
java.time.ZonedDateTime.ofStrict() 方法示例
描述
java.time.ZonedDateTime.ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone) 方法严格验证本地日期时间、偏移量和区域 ID 组合,获取 ZonedDateTime 的实例。
声明
以下是 java.time.ZonedDateTime.ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone) 方法的声明。
public static ZonedDateTime ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone)
```java
参数
localDateTime − 非空的本地日期时间。
offset − 非空的区域偏移量。
zone − 非空的时区。
返回值
非空的区域日期时间。
示例
package com.tutorialspoint; 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
打印页面
廣告