Java Date Time - OffsetDateTime withNano(int nanoOfSecond) example








OffsetDateTime withNano(int nanoOfSecond) returns a copy of this OffsetDateTime with the nano-of-second value altered.

Syntax

withNano has the following syntax.

public OffsetDateTime withNano(int nanoOfSecond)

Example

The following example shows how to use withNano.

import java.time.OffsetDateTime;

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

The code above generates the following result.