LocalDateTime withNano(int nanoOfSecond) example
Description
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;
/* w w w. j ava 2 s . c om*/
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.