java.time.ZonedDateTime.ofInstant() 方法
描述
java.time.ZonedDateTime.ofInstant(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone) 方法从结合本地日期时间和偏移量形成的瞬间获得一个ZonedDateTime的实例。
声明
以下是 java.time.ZonedDateTime.ofInstant(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone) 方法的声明。
public static ZonedDateTime ofInstant(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone)
参数
localDateTime − 本地日期时间,不为空。
offset − 区域偏移量,不为空。
zone − 时区,可能是偏移量,不为空。
返回值
分区日期时间,不为空。
示例
下面的例子展示了 java.time.ZonedDateTime.ofInstant(LocalDateTime localDateTime, ZoneOffset offset, ZoneId 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.ofInstant(LocalDateTime.now(),ZoneOffset.UTC, ZoneId.systemDefault() ); System.out.println(date); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
2017-03-28T19:30:59.269+05:30[Asia/Calcutta]