我在我的scala代码中使用了joda时间库。我的代码如下。
val dt:DateTime = new DateTime()
val dtf:DateTimeFormatter = DateTimeFormat.forPattern("yyyy-mm-dd")
return dtf.print(dt.minusDays(1))
假设当前日期是2011年3月11日,上面的代码应该返回字符串2011-03-10,但我得到的输出是2011-52-10
可能导致此问题的原因是什么?
请帮助 谢谢