我正在尝试使用 DateTimeFormatter 解析日期字符串。我收到以下异常:
错误的日期格式 10.10.2020 12:00:00 java.time.format.DateTimeParseException:无法在索引 2 处解析文本“10.10.2020 12:00:00”
String date="10.10.2020 12:00:00";
String dateTimeFormat = "MM/dd/yyyy HH:mm:ss a";
String exportTimeZone = "UTC";
DateTimeFormatter format = DateTimeFormatter.ofPattern(dateTimeFormat);
LocalDateTime impDateTime = LocalDateTime.parse(StringUtils.trim(date), format);
ZonedDateTime dateInUtc = ZonedDateTime.ofInstant(impDateTime.atZone(ZoneId.of(exportTimeZone)).toInstant(), ZoneId.systemDefault());
return format.format(dateInUtc);
任何帮助,将不胜感激?