What's the most standard, performant way of figuring out how many days ago a particular java.util.Date object represents? Ideally, I want to get back a double representing the (potentially) fractional number of days ago.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
That sounds remarkably like:
In other words, find out the difference between the current time and the given date in millis, and then divide by the number of milliseconds in a day. I've explicitly made the 1000d a double literal to make the final division work in double arithmetic. |
|||||
|
|
Get |
|||
|
|