I need to parse any incoming date time string with a user specified locale and timezone to the sole pattern to properly store it in the database later:
String inputDatetime = "Mon Dec 21 21:18:37 GMT 2020";
DateTimeFormatter fmt = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").withLocale(Locale.getDefault()).withZone(ZoneOffset.UTC);
TemporalAccessor date = fmt.parse(inputDatetime);
But I get the following error:
java.time.format.DateTimeParseException: Text 'Mon Dec 21 21:18:37 GMT 2020' could not be parsed at index 0
What's the problem with this code?
As you have already guessed, the root cause of the error is a mismatch between the pattern the date-time string in and the one that you have used in the
DateTimeFormatter
. If you already know all the date-time patterns in which you are getting the date-time strings, you can createDateTimeFormatter
with multiple optional patterns (by enclosing the patterns in square bracket). If you receive a date-time in an unknown pattern (i.e. the pattern which you have not put inDateTimeFormatter
), you can throw the exception or handle it as per your requirement.There are two parts of this requirement: A. Parse and convert the date-time in the user-specified locale and timezone into the equivalent date-time at
UTC
(not only recommended but also required by some databases e.g.PostgreSQL
) B. Save it into the database.The steps to meet the first part of the requirements are:
LocalDateTime
.LocalDateTime
toZonedDateTime
at the user-specified timezone.ZonedDateTime
toZonedDateTime
at UTC.ZonedDateTime
toOffsetDateTime
.Once you have
OffsetDateTime
, you can store it into the database as follows:You can use the following test harness to test the first part of the requirement:
A sample run: