我想获取两个给定日期之间的天数,小时数和分钟数,到目前为止,我已经尝试了3种不同的方法,但没有一个给我正确的值。请让我知道如何获取两者之间的天数,小时数和分钟数2个给定的日期。

以所有方式输入estdate是星期六2015年2月21日12:00:00
第一种方式

Date estDate=//date object which returns Sat Feb 21 12:00:00 IST 2015
long estDateInLong=estDate.getTime();
    long currentTimeinLong=Calendar.getInstance().getTimeInMillis();
    Long diff=currentTimeinLong-estDateInLong;
    long diffSeconds = diff / 1000 % 60;  //gives 6
    long diffMinutes = diff / (60 * 1000) % 60; //gives 21
    long diffHours=diff/(60*60 * 1000) % 60;//gives 26
    long diffDay=diff/(24*60*60 * 1000) % 60;//gives 16


这是错误的,所以我再次尝试了以下方法

Period p=new Period(new LocalDate(estDate)), new LocalDate(currentDate);
System.out.println(p.getDays());System.out.println(p.getHours());System.out.println(p.getMinutes());


输出

2
0
0


第三种方式

int delayTimeInDays=Days.daysBetween(new LocalDate(estDate), new LocalDate(currentDate).getDays();
    int delayTimeinHours=Hours.hoursBetween(new LocalDate(estDate), new LocalDate(currentDate).getHours();
    int seconds=Seconds.secondsBetween(new LocalDate(estDate), new LocalDate(currentDate)).getSeconds();


这给了我16,384,1382400

这又是错误的。

预期产量

当前时间是3月9日下午2:48

从2015年2月21日中午到12月22日中午:1天

从2015年2月22日中午至2月23日中午:2天

所以直到今天中午12天数= 16

小时数= 2

分钟数= 50

最佳答案

如果我的问题正确无误,这就是您要寻找的

long estDateInLong=//whatever gives you past date
long currentTimeinLong=Calendar.getInstance().getTimeInMillis();
long diff=(long)(currentTimeinLong-estDateInLong);
long diffDay=diff/(24*60*60 * 1000);
diff=diff-(diffDay*24*60*60 * 1000); //will give you remaining milli seconds relating to hours,minutes and seconds
long diffHours=diff/(60*60 * 1000);
diff=diff-(diffHours*60*60 * 1000);
long diffMinutes = diff / (60 * 1000);
diff=diff-(diffMinutes*60*1000);
long diffSeconds = diff / 1000;
diff=diff-(diffSeconds*1000);
System.out.println(diffDay +"\t"+diffHours+"\t"+diffMinutes+"\t"+diffSeconds);


使用Joda(可能是!)可能很容易完成,但也可以通过这种方式完成

希望这可以帮助!
祝好运

10-04 10:45