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]
广告