say I have 110 seconds that I want to convert to 01:50 or 00:01:50 or such. How do I do that in joda-time? I load the number into Seconds but then
01:50
00:01:50
public static void main(String[] args) { Date dt = new Date(); String date = String.format("%tH:%tM", dt, dt); System.out.println(date); // or System.out.printf("%tH:%tM", dt, dt); }