在两个日期之间有时间间隔的Im。
Period p = new Period(startDate, endDate,
PeriodType.standard().withSecondsRemoved().withMillisRemoved());
return PeriodFormat.getDefault().print(p);
这使我以“1小时30分钟”为形式。
我怎么能找到像“1:30”或“:15”这样的东西?
I suppose I could do something like:
public static int getHoursDifference(DateTime startDate, DateTime endDate) {
Period p = new Period(startDate, endDate);
return p.getHours();
}
同样,时间为分钟,然后又会合......?