- 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 - 时区标识
- java.time - 时区偏移
- java.time 包枚举
- java.time - 月份
- java.time 有用资源
- java.time - 讨论
java.time.ZonedDateTime.of() 方法示例
说明
java.time.ZonedDateTime.of(LocalDateTime date, ZoneId zone) 方法从日期时间和时区获取 ZonedDateTime 实例。
声明
以下是对 java.time.ZonedDateTime.of(LocalDateTime date, ZoneId zone) 方法的声明。
public static ZonedDateTime of(LocalDateTime date, ZoneId zone)
参数
date - 非空的本地日期时间
zone - 非空的时区
返回值
非空的带时区的日期时间。
示例
以下示例演示了 java.time.ZonedDateTime.of(LocalDateTime date, ZoneId zone) 方法的使用。
package com.tutorialspoint; import java.time.LocalDateTime; import java.time.ZonedDateTime; import java.time.ZoneId; public class ZonedDateTimeDemo { public static void main(String[] args) { ZonedDateTime date = ZonedDateTime.of(LocalDateTime.now(), ZoneId.systemDefault()); System.out.println(date); } }
让我们编译并运行上述程序,这将生成以下结果 -
2017-03-28T13:57:45.878+05:30[Asia/Calcutta]
广告