将JodaTime评级下调1.6至1.2

时间:2012-02-17 10:13:51

标签: java jodatime backwards-compatibility

我有一些用JodaTime 1.6编写的代码,我需要与JodaTime 1.2兼容。在我的代码中,我正在使用月和日等。

我想知道是否可以使此代码与JodaTime 1.2兼容

cal.add(
   Calendar.MONTH, 
   Months.monthsBetween(
      new DateTime(referenceDate.getTime()), 
      new DateTime(startDate.getTime())
   ).getMonths() + numberOfMonths);

这可行吗?

此时,项目中也不能升级到1.6。

0 个答案:

没有答案