1

我在尝试打印两个日期之间的给定时间段时遇到问题。

让我告诉你细节,然后我会放代码:

日期 a = 5 月 20 日,日期 b = 6 月 19 日

中间的时间应该是 30 天。(或 29,没关系)

但鉴于我拥有的代码,它说它只有 1 天。

你能帮我解决这个问题吗?我想要的是获得介于两者之间的整个期间:29 天。

谢谢。

public static void main(String args[]) {

  Calendar calA = Calendar.getInstance();
  calA.set(Calendar.MONTH, 5);
  calA.set(Calendar.DAY_OF_MONTH, 20);

  Calendar calB = Calendar.getInstance();
  calB.set(Calendar.MONTH, 6);
  calB.set(Calendar.DAY_OF_MONTH, 19);

  DateTime da = new DateTime(calA.getTime());
  DateTime db = new DateTime(calB.getTime());
  Period p = new Period(da,db);
  System.out.println(printPeriod(p));

}

 private static String printPeriod(Period period) {

   PeriodFormatter monthDaysHours = new PeriodFormatterBuilder()
    .appendMonths()
    .appendSuffix(" month"," months")
    .appendSeparator(",")
    .appendDays()
    .appendSuffix(" day", " days")
    .appendSeparator(",")
    .appendHours()
    .appendSuffix(" hour"," hours")
    .toFormatter();

 return monthDaysHours.print(period.normalizeStandardPeriodType());
 } 
4

1 回答 1

3

期间已创建为“4 周零 1 天” - 但您没有打印出周数。

假设您想要年/月/日/时间,请将 Period 构造函数调用更改为:

Period p = new Period(da, db, PeriodType.yearMonthDayTime());

然后摆脱对的调用normalizeStandard()(我实际上找不到一个名为 的方法normalizeStandardPeriodType();我假设这是一个错字。)

当然,这将忽略此期间的任何年份。您可能会使用:

PeriodType pt = PeriodType.yearMonthDayTime().withYearsRemoved();
Period p = new Period(da, db, pt);
于 2011-05-20T16:54:23.137 回答