Joda 时间给出了错误的时区
我正在使用Joda时间(1.6)库,它不断返回具有错误时区的DateTime对象,英国夏令时而不是GMT。
我的Windows工作站(运行JDK 1.6.0_16)认为它处于GMT状态,如果我从JDK日期/时间类中获取默认时区,则它是正确的(GMT)。我在Linux服务器上也有相同的行为。我认为这可能是Joda中时区数据库文件中的错误,所以我用最新的数据库重建了jar,但没有更改。
import java.util.TimeZone;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.joda.time.LocalTime;
import org.joda.time.format.DateTimeFormatter;
import org.joda.time.format.ISODateTimeFormat;
public class TimeZoneTest {
public static void main(String[] args) {
DateTimeFormatter timeParser = ISODateTimeFormat.timeParser();
TimeZone timeZone = TimeZone.getDefault();
System.out.println(timeZone.getID()); // "Europe/London"
System.out.println(timeZone.getDisplayName()); // "Greenwich Mean Time"
DateTimeZone defaultTimeZone = DateTimeZone.getDefault();
System.out.println(defaultTimeZone.getID()); //"Europe/London"
System.out.println(defaultTimeZone.getName(0L)); //"British Summer Time"
DateTime currentTime = new DateTime();
DateTimeZone currentZone = currentTime.getZone();
System.out.println(currentZone.getID()); //"Europe/London"
System.out.println(currentZone.getName(0L)); //"British Summer Time"
}
}
通过静态初始化器进行调试,我看到调用按预期给出。org.joda.time.DateTimeZone
System.getProperty("user.timezone")
"Europe/London"