使用Joda处理时区偏移过渡和夏令时
作者:互联网
我试图解析日期时间字符串并创建Joda DateTime对象.
我的数据来自遗留数据库,该数据库存储日期时间字符串而不指定时区/偏移量.虽然未存储日期时间字符串的时区/偏移量,但遗留系统的业务规则是所有日期时间都存储在东部时间.遗憾的是,我没有权限更新旧数据库存储日期时间字符串的方式.
因此,我使用JODA的“US / Eastern”时区解析日期时间字符串.
当dateTime字符串落在夏令时打开时“消失”的小时内时,此方法会抛出illegalInstance异常.
我已经创建了以下示例代码来演示此行为并显示我提出的解决方法.
public class FooBar {
public static final DateTimeZone EST = DateTimeZone.forID("EST");
public static final DateTimeZone EASTERN = DateTimeZone.forID("US/Eastern");
public static final DateTimeFormatter EST_FORMATTER = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss.SSS").withZone(EST);
public static final DateTimeFormatter EASTERN_FORMATTER = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss.SSS").withZone(EASTERN);
public static void main(String[] args) {
final String[] listOfDateTimeStrings = {"2014-03-09 02:00:00.000", "2014-03-08 02:00:00.000"};
System.out.println(" *********** 1st attempt *********** ");
for (String dateTimeString: listOfDateTimeStrings){
try{
final DateTime dateTime = DateTime.parse(dateTimeString, EASTERN_FORMATTER);
System.out.println(dateTime);
}
catch(Exception e){
System.out.println(e.getMessage());
}
}
System.out.println(" *********** 2nd attempt *********** ");
for (String dateTimeString: listOfDateTimeStrings){
try{
final DateTime dateTime = DateTime.parse(dateTimeString, EST_FORMATTER);
System.out.println(dateTime);
}
catch(Exception e){
System.out.println(e.getMessage());
}
}
System.out.println(" *********** 3rd attempt *********** ");
for (String dateTimeString: listOfDateTimeStrings){
try{
DateTime dateTime = DateTime.parse(dateTimeString, EST_FORMATTER);
dateTime = dateTime.withZone(EASTERN);
System.out.println(dateTime);
}
catch(Exception e){
System.out.println(e.getMessage());
}
}
}
}
产出量:
*********** 1st attempt *********** Cannot parse "2014-03-09 02:00:00.000": Illegal instant due to time zone offset transition (America/New_York) 2014-03-08T02:00:00.000-05:00 *********** 2nd attempt *********** 2014-03-09T02:00:00.000-05:00 2014-03-08T02:00:00.000-05:00 *********** 3rd attempt *********** 2014-03-09T03:00:00.000-04:00 2014-03-08T02:00:00.000-05:00
在“第三次尝试”中,我得到了预期的结果:第一个日期时间的偏移量为-04:00.因为它在2015年夏令时的第一个小时内.第二个时间戳的偏移量为-05:00,因为它超出了夏令时.
这样做是安全的:
DateTime dateTime = DateTime.parse(dateTimeString, A_FORMATTER_WITH_TIME_ZONE_A);
dateTime = dateTime.withZone(TIME_ZONE_B);
我已经使用日期时间字符串和时区的几种不同组合测试了这段代码(到目前为止它适用于所有测试用例),但我想知道是否有更多Joda经验的人可以在这种方法中看到任何错误/危险.
或者:有没有更好的方法来处理与Joda的时区偏移过渡?
解决方法:
小心.方法withZone(…)的行为记录如下:
Returns a copy of this datetime with a different time zone, preserving
the millisecond instant.
记住这一点,你必须明白EST和“America / New_York”(比过时的id“US / Eastern”更好)是不一样的.第一个(EST)具有固定偏移(无DST),但第二个具有包括可能间隙的DST.如果您确定,您应该只申请EST作为东方的替代品
a)您已经处于异常模式(通常在东区使用解析的日期时间而不重复解析,否则应用EST会伪造解析的瞬间),
b)你明白在第二次(和第三次)选择EST是尝试选择DST过渡后的瞬间.
关于这种限制/约束,您的解决方法将起作用(但仅适用于特殊对EST与America / New_York).就个人而言,我发现使用基于异常的逻辑来解决Joda-Time的严重限制是非常可怕的.作为反例,新的JSR-310在处理间隙时不使用异常策略,而是在间隙大小推进之后选择后一个瞬间的策略(就像旧的java.util.Calendar-stuff).
我建议你首先按照@Jim Garrison的建议来看看在应用这样的解决方法之前是否可以纠正这些废弃的数据(我的upvote为他的回答).
阅读原始规格要求后更新(已废弃 – 见下文):
如果遗留系统的规范说所有时间都存储在EST中,那么你应该用这种方式解析它,而不是使用“America / New_York”进行解析.相反,您可以在第二阶段将解析的EST时刻转换为New-York-time(使用withZone(EASTERN).这样您就不会有任何异常逻辑,因为(解析的)瞬间总是可以转换为本地时间表示一种不明确的方式(DateTime类型的解析时刻,转换后的结果包含本地时间).代码示例:
public static final DateTimeZone EST = DateTimeZone.forID("EST");
public static final DateTimeZone EASTERN = DateTimeZone.forID("US/Eastern");
public static final DateTimeFormatter EST_FORMATTER =
DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss.SSS").withZone(EST);
// in your parsing method...
String input = "2014-03-09 02:00:00.000";
DateTime dt = EST_FORMATTER.parseDateTime(input);
System.out.println(dt); // 2014-03-09T02:00:00.000-05:00
System.out.println(dt.withZone(EASTERN)); // 2014-03-09T03:00:00.000-04:00
OP评论和澄清后更新:
现在确认遗留系统不在EST中存储时间戳(固定偏移量为UTC-05,但在EASTERN区域中(“America / New_York”具有EST或EDT的可变偏移量).首先应该是联系供应商无效的时间戳,以查看他们是否可以更正数据.否则,您可以使用以下解决方法:
关于您的输入包含没有任何偏移或区域信息的时间戳的事实,我建议首先解析为LocalDateTime.
=>静态初始化部分
// Joda-Time cannot parse "EDT" so we use hard-coded offsets
public static final DateTimeZone EST = DateTimeZone.forOffsetHours(-5);
public static final DateTimeZone EDT = DateTimeZone.forOffsetHours(-4);
public static final DateTimeZone EASTERN = DateTimeZone.forID("America/New_York");
public static final org.joda.time.format.DateTimeFormatter FORMATTER =
org.joda.time.format.DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss.SSS");
=>在你的解析方法中
String input = "2014-03-09 02:00:00.000";
LocalDateTime ldt = FORMATTER.parseLocalDateTime(input); // always working
System.out.println(ldt); // 2014-03-09T02:00:00.000
DateTime result;
try {
result = ldt.toDateTime(EASTERN);
} catch (IllegalInstantException ex) {
result = ldt.plusHours(1).toDateTime(EDT); // simulates a PUSH-FORWARD-strategy at gap
// result = ldt.toDateTime(EST); // the same instant but finally display with EST offset
}
System.out.println(result); // 2014-03-09T03:00:00.000-04:00
// if you had chosen <<<ldt.toDateTime(EST)>>> then: 2014-03-09T02:00:00.000-05:00
OP的最后评论的另一个澄清:
产生DateTime的方法toDateTime(DateTimeZone)记录如下:
In a daylight saving overlap, when the same local time occurs twice,
this method returns the first occurrence of the local time.
换句话说,它在重叠的情况下(秋季)选择较早的偏移量.所以没有必要打电话
result = ldt.toDateTime(EASTERN).withEarlierOffsetAtOverlap();
但是,它在这里没有任何伤害,为了记录起见,您可能更喜欢它.另一方面:调用异常处理没有任何意义(对于间隙)
result = ldt.toDateTime(EDT).withEarlierOffsetAtOverlap();
因为EDT(和EST也是固定的偏移量,其中重叠不会发生).所以这里的方法withEarlierOffsetAtOverlap()不做任何事情.此外:在EDT的情况下退出校正ldt.plusHours(1)是不行的,并将产生另一个瞬间.在写这个额外的解释之前我已经测试了,但是当然,你可以使用替代的ldt.toDateTime(EST)来实现你想要的(EDT!= EST,但是通过校正plusHours(1)你会得到相同的瞬间) .我刚刚注意到EDT示例,以演示如何精确建模标准JDK行为.在解决间隙(EDT或EST)的情况下,您可以选择偏移,但是获得相同的时刻至关重要(ldt.plusHours(1).toDateTime(EDT)与result = ldt.toDateTime(EST)).
标签:java,timezone,jodatime,timezone-offset 来源: https://codeday.me/bug/20190528/1168078.html