是否有可能找到java.util.Date
和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();
}
答案 0 :(得分:5)
只需将Date
转换为DateTime
,然后使用Days#daysBetween()
即可。 DateTime
有constructor花费时间以毫秒为单位,而Date
有getter返回exaclty。
DateTime lastDate = new DateTime(Obj.getAccepted().getTime());
DateTime currentDate = new DateTime();
int days = Days.daysBetween(lastDate, currentDate).getDays();