1

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

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);

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

4

1 回答 1

6

那个代码很好。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);
于 2012-06-11T13:43:51.280 回答