尝试解析 LocalDateTime 时出现异常

Exception when trying to parse a LocalDateTime

我正在使用以下时间戳格式:

yyyyMMddHHmmssSSS

以下方法工作正常:

public static String formatTimestamp(final Timestamp timestamp, final String format) {
    final DateTimeFormatter formatter = DateTimeFormatter.ofPattern(format);
    return timestamp.toLocalDateTime().format(formatter);
}

并且,当我传入带有该格式字符串的时间戳时,它 returns,例如:

20170925142051591

然后我需要再次从该字符串映射到时间戳,本质上是反向操作。我知道我可以使用 SimpleDateFormat 及其 parse() 方法,但如果可能的话,我更愿意坚持使用 java.time 样式格式。

我写了这段(相当hacky的)代码,它适用于某些格式,但不适用于这个特定的格式:

public static Timestamp getTimestamp(final String text, final String format, final boolean includeTime) {
    final DateTimeFormatter formatter = DateTimeFormatter.ofPattern(format);
    final TemporalAccessor temporalAccessor = formatter.parse(text);
    if (includeTime) {
        final LocalDateTime localDateTime = LocalDateTime.from(temporalAccessor);
        return DateTimeUtil.getTimestamp(localDateTime);
    } else {
        final LocalDate localDate = LocalDate.from(temporalAccessor);
        return DateTimeUtil.getTimestamp(localDate);
    }
}

它在第二行失败,在 formatter.parse(text); 部分。

堆栈跟踪:

java.time.format.DateTimeParseException: Text '20170925142051591' could not be parsed at index 0
    at java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:1949)
    at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1851)
    at java.time.LocalDateTime.parse(LocalDateTime.java:492)
    at java.time.LocalDateTime.parse(LocalDateTime.java:477)
    at com.csa.core.DateTimeUtil.main(DateTimeUtil.java:169)

有没有更简单的方法可以在不使用 SimpleDateFormat 的情况下实现我想要的效果?

这是一个错误:https://bugs.openjdk.java.net/browse/JDK-8031085

上面的 link 也提供了解决方法:使用 java.time.format.DateTimeFormatterBuilderjava.time.temporal.ChronoField 作为毫秒字段:

String text = "20170925142051591";
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
    // date/time
    .appendPattern("yyyyMMddHHmmss")
    // milliseconds
    .appendValue(ChronoField.MILLI_OF_SECOND, 3)
    // create formatter
    .toFormatter();
// now it works
formatter.parse(text);

不幸的是,似乎没有办法仅使用 DateTimeFormatter.ofPattern(String).

来解析它