java.time.OffsetDateTime.from() Method Example



Description

The java.time.OffsetDateTime.from(TemporalAccessor temporal) method obtains an instance of OffsetDateTime from a temporal object.

Declaration

Following is the declaration for java.time.OffsetDateTime.from(TemporalAccessor temporal) method.

public static OffsetDateTime from(TemporalAccessor temporal)

Parameters

temporal − the temporal object to convert, not null.

Return Value

the local date, not null.

Exceptions

DateTimeException − if unable to convert to a OffsetDateTime.

Example

The following example shows the usage of java.time.OffsetDateTime.from(TemporalAccessor temporal) method.

package com.tutorialspoint;

import java.time.OffsetDateTime;
import java.time.ZonedDateTime;

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

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

2017-03-21T12:15:35.619+05:30
Advertisements