Java Date Time Java Java API
java.time.OffsetTime
public OffsetTime withSecond(int second)
Returns a copy of this OffsetTime with the second-of-minute replaced with the provided second.
If the provided 'second' is not valid, this method will throw java.time.DateTimeException. The valid values for second are 0 - 59.
package com.logicbig.example.offsettime;import java.time.OffsetTime;public class WithSecondExample { public static void main(String... args) { OffsetTime t = OffsetTime.now(); System.out.println(t); OffsetTime t2 = t.withSecond(59); System.out.println(t2); }}
08:00:51.264+08:0008:00:59.264+08:00