Java Date Time - OffsetTime now() example








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

Syntax

now has the following syntax.

public static OffsetTime now()

Example

The following example shows how to use now.

import java.time.OffsetTime;
//from  w w  w. j  a va 2s . c o m
public class Main {
  public static void main(String[] args) {
    OffsetTime m = OffsetTime.now();

    System.out.println(m);

  }
}

The code above generates the following result.