java.time.OffsetDateTime.toZonedDateTime() 方法示例



描述

java.time.OffsetDateTime.toZonedDateTime() 方法使用偏移作为时区 ID 将此日期时间转换为 ZonedDateTime。

声明

以下是对 java.time.OffsetDateTime.toZonedDateTime() 方法的声明。

public ZonedDateTime toZonedDateTime()

返回值

表示时间和偏移的 OffsetTime,非空。

示例

下面的示例展示了 java.time.OffsetDateTime.toZonedDateTime() 方法的使用。

package com.tutorialspoint;

import java.time.OffsetDateTime;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {
 
      OffsetDateTime date = OffsetDateTime.now();
      System.out.println(date.toZonedDateTime());  
   }
}

让我们编译并运行上面的程序,它将产生以下结果 −

2017-03-21T14:35:55.111+05:30
广告