Tagged Questions
14
votes
7answers
7k views
Calculating the Difference Between Two Java Date Instances
I'm using Java's java.util.date class in Scala and want to compare a date object and the current time. I know I can calculate the delta by using getTime():
(new java.util.Date()).getTime() - ...