List of usage examples for java.time LocalDateTime withSecond
public LocalDateTime withSecond(int second)
From source file:Main.java
public static void main(String[] args) { LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01); LocalDateTime t = a.withSecond(1234); System.out.println(t);/*from w w w.j av a2 s. com*/ }