Calendar.getTime()因java.lang.IllegalArgumentException失败:亚洲/新加坡时区的MINUTE

时间:2013-02-19 22:09:16

标签: java date calendar timezone

为什么这段代码失败了?目的是删除时间部分。

String dateStr = "1982-01-01";
String timeZoneID = "Asia/Singapore";

DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
Date date = dateFormat.parse(dateStr);      

Calendar calendar = Calendar.getInstance();
calendar.setTimeZone(TimeZone.getTimeZone(timeZoneID));
calendar.setLenient(false);
calendar.setTime(date);
calendar.set(Calendar.HOUR_OF_DAY, 0);
calendar.set(Calendar.MINUTE, 0);
calendar.set(Calendar.SECOND, 0);
calendar.set(Calendar.MILLISECOND, 0);

System.out.println(calendar.getTime());

错误消息:

Exception in thread "main" java.lang.IllegalArgumentException: MINUTE
    at java.util.GregorianCalendar.computeTime(GregorianCalendar.java:2482)
    at java.util.Calendar.updateTime(Calendar.java:2265)
    at java.util.Calendar.getTimeInMillis(Calendar.java:1049)
    at java.util.Calendar.getTime(Calendar.java:1022)
    at Prog.main(Prog.java:31)

它适用于以下输入:

  • dateStr =“1982-01-01”,timeZoneID =“Europe / Berlin”
  • dateStr =“1981-01-01”,timeZoneID =“Asia / Singapore”
  • dateStr =“1982-01-01”,timeZoneID =“Asia / Seoul”

1 个答案:

答案 0 :(得分:6)

您的代码以日期为1/1/1982开头,并将HOUR_OF_DAY和MINUTE都设为0。

但是1982年1月1日上午12点00分在新加坡没有。 1981年12月31日晚上11:59:59之后,新加坡半小时到达上午12:30。它之前一直是UTC + 7:30,但已转移到UTC + 8的整个小时区域。

来源:Singapore Standard Timetimeanddate.com。另请参阅Why is Singapore in the "wrong" time zone?了解新加坡的简要时间历史。