java.time.OffsetDateTime.toZonedDateTime() Method Example



Description

The java.time.OffsetDateTime.toZonedDateTime() method converts this date-time to a ZonedDateTime using the offset as the zone ID.

Declaration

Following is the declaration for java.time.OffsetDateTime.toZonedDateTime() method.

public ZonedDateTime toZonedDateTime()

Return Value

an OffsetTime representing the time and offset, not null.

Example

The following example shows the usage of java.time.OffsetDateTime.toZonedDateTime() method.

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());  
   }
}

Let us compile and run the above program, this will produce the following result −

2017-03-21T14:35:55.111+05:30
Advertisements