ZonedDateTime解析异常

时间:2017-07-18 09:09:52

标签: java date parsing datetime zoneddatetime

我正在尝试将字符串转换为ZonedDateTime。

我试过以下:

SimpleDateFormat zonedDateTimeFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS Z");   
zonedDateTimeFormat.setTimeZone(TimeZone.getTimeZone("GMT")); 

long timeMs = zonedDateTimeFormat.parse("2017-07-18T20:26:28.582+03:00[Asia/Istanbul]").getTime();

它提供java.text.ParseException: Unparseable date

如何将以下字符串解析为ZonedDateTime

2017-07-18T20:26:28.582+03:00[Asia/Istanbul]

3 个答案:

答案 0 :(得分:3)

java.time API具有许多内置格式,可简化解析和格式化过程。您尝试解析的字符串采用标准ISO_ZONED_DATE_TIME格式。因此,您可以通过以下方式轻松解析它,然后从纪元获得毫秒:

DateTimeFormatter formatter = DateTimeFormatter.ISO_ZONED_DATE_TIME ;
ZonedDateTime zdt = ZonedDateTime.parse(
                        "2017-07-18T20:26:28.582+03:00[Asia/Istanbul]", 
                        formatter);  // prints 2017-07-18T20:26:28.582+03:00[Asia/Istanbul]
long timeInMs = zdt.toInstant().toEpochMilli();

答案 1 :(得分:2)

ZonedDateTime.parse似乎旨在处理您提供的确切字符串。没有必要通过旧的SimpleDateFormat

答案 2 :(得分:2)

对于ZonedDateTime,我们需要使用ZonedDateTime.parse方法和DateTimeFormatter。如果我没有错,你有一个ISO日期:

 ZonedDateTime zonedDateTime = ZonedDateTime.parse(
         "2017-07-18T20:26:28.582+03:00[Asia/Istanbul]",
         DateTimeFormatter.ISO_DATE_TIME
 );
 System.out.println(zonedDateTime); //2017-07-18T20:26:28.582+03:00[Asia/Istanbul]

您可以使用ISO_ZONED_DATE_TIMEISO_DATE_TIME。两者都能够用偏移量和区域来解析日期时间。