java.time.format.DateTimeParseException: Text '2020-08-21T14:00:00.00+0700' could not be parsed at index 20 exception got for below code.
ZonedDateTime.parse(iso8601DateString, "yyyy-MM-dd'T'HH:mm:ss.SSSZ")
it worked in java 11 but it got exception in Java 17.
Got it worked with 2020-08-21T14:00:00.000+0700, milliseconds should be three digit (000)