So i am creating an application to countdown to a date in java.
So lets say i parse these 2 days:
Date Now = 2016/01/15 16:52:22
Date End = 2016/01/15 18:37:18
How would i calculate the differences so that i can get the output like so:
1 hour, 44 minutes and 56 seconds
instead of the total hours, total minutes and total seconds.
I guess the best way to explain it is that i need to get the seconds left of the minute, the minutes left of the hour, etc, etc.