Java Date Time - OffsetDateTime now(Clock clock) example








OffsetDateTime now(Clock clock) creates the current date-time from the specified clock.

Syntax

now has the following syntax.

public static OffsetDateTime now(Clock clock)

Example

The following example shows how to use now.

import java.time.Clock;
import java.time.OffsetDateTime;
/*  w  w w.  j  a v a  2s  .  c  o m*/
public class Main {
  public static void main(String[] args) {
    OffsetDateTime o = OffsetDateTime.now(Clock.systemUTC());
    
    System.out.println(o);
  }
}

The code above generates the following result.