JUnit4测试导致java.text.ParseException:Unparseable date

我可以在
Android项目中成功执行以下代码段:

SimpleDateFormat dateFormat = new SimpleDateFormat(
    "yyyy-MM-dd'T'HH:mm:ssZ", Locale.US);
dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
Date date = null;
try {
    date = dateFormat.parse("2015-08-17T19:30:00+02:00");
} catch (ParseException e) {
    e.printStackTrace();
}

现在我将相同的代码片段放入JUnit4测试中:

@RunWith(JUnit4.class)
public class DateUtilsTests {

    @Test
    public void testFailsWithParseException() {
        SimpleDateFormat dateFormat = new SimpleDateFormat(
            "yyyy-MM-dd'T'HH:mm:ssZ", Locale.US);
        dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
        Date date = null;
        try {
            date = dateFormat.parse("2015-08-17T19:30:00+02:00");
        } catch (ParseException e) {
            e.printStackTrace();
        }
        assertThat(date).isNotEqualTo(null);
    }

}

这失败了:

java.text.ParseException: Unparseable date: “2015-08-17T19:30:00+02:00”

最佳答案 从
SimpleDateFormat Javadoc:

> Z对应RFC 822 time zone(如-0800)
> X对应于 ISO 8601 time zone(如-08或-0800或-08:00)

在您的情况下,您想要解析以02:00形式编写的时区(即在小时和分钟之间使用冒号),因此您应该使用X标记而不是Z标记.

但是,在Android中,SimpleDateFormat没有X标记,只有Z,文档声明Z支持解析格式为-08:00的时区.

点赞