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