Returns a copy of this LocalTime with the second-of-minute field replaced with the specified value.

package com.logicbig.example.localtime;
import java.time.LocalTime;
public class WithSecondExample {
public static void main (String... args) {
LocalTime t = LocalTime.of(5, 1, 5, 3000);
System.out.println(t);
LocalTime t2 = t.withSecond(50);
System.out.println(t2);
}
}
Output
05:01:05.000003
05:01:50.000003