I'm trying to perform a simple conversion from a set of date strings to ZonedDateFormat:
String dateString = "2034-09-03T00:00:00Z";
String date2String = "2023-01-20T13:45:24.548Z";
Parsing with the ZonedDateFormat works with the decimals but doesn't for the other string. How would I go about doing this?