Java 将日期转换为 EST 时区以遵守 DST



我想将当前日期转换为美国/蒙特利尔时区。我是这样做的:

Date date = new Date();
TimeZone timeZone = TimeZone.getTimeZone ("America/Montreal");
Calendar cal = new GregorianCalendar(timeZone);
cal.setTime(date);
String whatIWant = "" + cal.get(Calendar.HOUR_OF_DAY) + ':'+ 
                   cal.get(Calendar.MINUTE)+ ':'+ cal.get(Calendar.SECOND);
log.info(whatIWant);

转换很好,但我想知道这段代码有多健壮。没有夏令时会发生什么?

这段代码很好。Java会自动考虑冬季或夏令时。

您也可以通过使用 DateFormat 对象将日期转换为字符串,在DateFormat对象上设置所需的时区来执行此操作:

Date date = new Date();
DateFormat df = new SimpleDateFormat("HH:mm:ss");
// Tell the DateFormat that you want the time in this timezone
df.setTimeZone(TimeZone.getTimeZone("America/Montreal"));
String whatIWant = df.format(date);

相关内容

  • 没有找到相关文章

最新更新