java.text.ParseException: Unparseable date “yyyy-MM-dd'T'HH:mm:ss.SSSZ” - SimpleDateFormat

后端 未结 2 867
自闭症患者
自闭症患者 2020-12-15 02:51

I would appreciate any help with finding bug for this exception:

java.text.ParseException: Unparseable date: \"2007-09-25T15:40:51.0000000Z\"
2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-15 03:30

    In Java 7 you can also use the X pattern to match an ISO8601 timezone, which includes the special Z (UTC) value:

    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSSSSSX");
    Date date = sdf.parse("2007-09-25T15:40:51.0000000Z");
    

    However, it seems to require an exact number of millisecond characters in the pattern, which is not required for the 'Z' character pattern, and is rather inconvenient. I think this is because the ISO8601 definition also includes "two-digit hours", which are just numbers, so cannot be distinguished by the parser from the preceding milliseconds.

    So this version would be fine for timestamps down to second precision, less so for milliseconds.

提交回复
热议问题