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() - ...
4
votes
4answers
247 views

Python: Difference of 2 datetimes in months [closed]

Possible Duplicate: Best way to find the months between two dates (in python) I would like to know how I can have the exact number of months for this difference: date1 = ...