简体   繁体   中英

Find the difference in days between a java.util.Date and a Joda-Time DateTime?

Is it possible to find the difference (preferably expressed in terms of the number of days) between a java.util.Date and a Joda-Time DateTime ?

class ReminderInterval{
    //it will return a last login date(java.util.Date)
    Date lastDate=Obj.getAccepted();

    //it is Joda-Time type
    DateTime currentDate=new DateTime();
}

Just convert Date to DateTime and then use Days#daysBetween() . The DateTime has a constructor taking the time in millis and the Date has a getter returning exaclty that.

DateTime lastDate = new DateTime(Obj.getAccepted().getTime());
DateTime currentDate = new DateTime();
int days = Days.daysBetween(lastDate, currentDate).getDays();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM