I am trying to convert the value 2022-04-30 14:34:52.900426+00:00
an instance of LocalDateTime
. I have written the following code:
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSSSSS'Z'");
I am getting the following error
could not be parsed at index 26
What should my formatter string be?
It's not working because the UTC Time offsets hasn't been written properly. It should look like this with a custom
DateTimeFormatter
:You could either use the predefined
ISO_OFFSET_DATE_TIME
DatTimeFormatter
only by replacing the space between date and time with a capital T, as the standard requires.Besides, to answer your question under @Taco Jan Osinga's reply:
No, it is not correct to use "+00:00" to just match the datetime you're trying to parse. That custom
DateTimeFormatter
you would build would only match datetime referring to your local TimeZone; thus it won't work with datetime from different areas.