时区和夏令时是一场噩梦。你当然不应该自己承担这项任务。让 Joda-Time 完成繁重的工作。
请参阅类似问题的答案Using Joda time to get UTC offset for a given date and timezone。DateTimeZone类提供了一个getOffset()方法。
Java 7 中 Joda-Time 2.3 中的示例源代码...</p>
// © 2013 Basil Bourque. This source code may be used freely forever by anyone taking full responsibility for doing so.
org.joda.time.DateTimeZone californiaTimeZone = org.joda.time.DateTimeZone.forID("America/Los_Angeles");
org.joda.time.DateTime now = new org.joda.time.DateTime(californiaTimeZone);
int millisecondOffsetToAddToUtcToGetLocalTime = californiaTimeZone.getOffset( now );
System.out.println( "millisecondOffsetToAddToUtcToGetLocalTime: " + millisecondOffsetToAddToUtcToGetLocalTime );
// Note the casting to doubles to avoid integer truncation. Time zone offsets are NOT always whole hours.
System.out.println( "Offset in decimal hours: " + (double)millisecondOffsetToAddToUtcToGetLocalTime / 1000d / 60d / 60d );
在 2013-11-20T01:03:56.464-08:00 运行时…</p>
millisecondOffsetToAddToUtcToGetLocalTime: -28800000
millisecondOffsetToAddToUtcToGetLocalTime in hours: -8.0
重要信息对于偏移量,该数字格式-8.0
不正确。必须是:
-08:00
用冒号和两位数(用前导零填充)。
-08
与前导零。