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

后端 未结 2 866
自闭症患者
自闭症患者 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.

    0 讨论(0)
  • 2020-12-15 03:44

    Z represents the timezone character. It needs to be quoted:

    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
    
    0 讨论(0)
提交回复
热议问题