Java Date Time - LocalDateTime withNano(int nanoOfSecond) example








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

Syntax

withNano has the following syntax.

public LocalDateTime withNano(int nanoOfSecond)

Example

The following example shows how to use withNano.

import java.time.LocalDateTime;
//from  w  ww.  j  a va  2  s  .  c  o m
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01);
    
    LocalDateTime t = a.withNano(1234);
    
    System.out.println(t);
  }
}

The code above generates the following result.