我在Java中使用Joda时间。我需要导入哪些包才能使用以下语句?
DateTime now = SystemFactory.getClock().getDateTime();
我收到错误“SystemFactory无法解析”。
这是Joda图书馆的一部分吗?
答案 0 :(得分:1)
org.phpfirefly.test.joda.factory.SystemFactory
它不是Joda图书馆的一部分。 而是使用下面的行:
private static final DateTime theDateTime = new DateTime(2009, 9, 6, 14, 30, 0, 0);
注意: 如果您使用的是IDE,那么它将帮助您导入适当的包。