Java Date Time - OffsetDateTime from(TemporalAccessor temporal) example








OffsetDateTime from(TemporalAccessor temporal) creates an instance of OffsetDateTime from a temporal object.

Syntax

from has the following syntax.

public static OffsetDateTime from(TemporalAccessor temporal)

Example

The following example shows how to use from.

import java.time.OffsetDateTime;
import java.time.ZonedDateTime;
//from w  ww.ja v  a2 s  . c  om
public class Main {
  public static void main(String[] args) {
    OffsetDateTime o = OffsetDateTime.from(ZonedDateTime.now());
    
    System.out.println(o);
  }
}

The code above generates the following result.