I want to subtract two timeperiods say 16:00:00 from 19:00:00. Is there any java function for this? The results can be in milliseconds, seconds, or minutes.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Difference is in milliseconds. I modified sfaizs post. |
|||||
|
|
Just like any other language; convert your time periods to a unix timestamp (ie, seconds since the Unix epoch) and then simply subtract. Then, the resulting seconds should be used as a new unix timestamp and read formatted in whatever format you want. Ah, give the above poster (genesiss) his due credit, code's always handy ;) Though, you now have an explanation as well :) |
||||
|
|
|
Here is the e.g. using joda-time
|
|||
|
The painful way is to convert to millis and do the subtraction and then back to whatever seconds or so you want. The better way is to use JodaTime. |
|||||||||||||||
|