Java Date Time - OffsetTime now(ZoneId zone) example








OffsetTime now(ZoneId zone) creates the current time from the system clock in the specified time-zone.

Syntax

now has the following syntax.

public static OffsetTime now(ZoneId zone)

Example

The following example shows how to use now.

import java.time.OffsetTime;
import java.time.ZoneId;
/*  w ww  .  java 2s.  c o m*/
public class Main {
  public static void main(String[] args) {
    OffsetTime m = OffsetTime.now(ZoneId.systemDefault());

    System.out.println(m);

  }
}

The code above generates the following result.