Java Date Time - OffsetDateTime now() example








OffsetDateTime now() creates the current date-time from the system clock in the default time-zone.

Syntax

now has the following syntax.

public static OffsetDateTime now()

Example

The following example shows how to use now.

import java.time.OffsetDateTime;

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

The code above generates the following result.