我正在尝试使用03-feb-2014 13:16:31
解析以下时间戳字符串java.time
但是它会抛出错误。这是我的代码。
String timestamp = "03-feb-2014 13:16:31";
DateTimeFormatter format;
DateTimeFormatterBuilder formatBuilder = new DateTimeFormatterBuilder();
formatBuilder.parseCaseInsensitive();
formatBuilder.append(DateTimeFormatter.ofPattern("dd-MMM-YYYY HH:mm:ss"));
format = formatBuilder.toFormatter();
LocalDateTime localdatetime = LocalDateTime.parse(timestamp, format);
但是我收到以下错误。
Exception in thread "main" java.time.format.DateTimeParseException: Text '03-feb-2014 13:16:31' could not be parsed: Unable to obtain LocalDateTime from TemporalAccessor: {DayOfMonth=3, MonthOfYear=2, WeekBasedYear[WeekFields[SUNDAY,1]]=2014},ISO resolved to 13:16:31 of type java.time.format.Parsed
at java.time.format.DateTimeFormatter.createError(DateTimeFormatter.java:1920)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1855)
at java.time.LocalDateTime.parse(LocalDateTime.java:492)
at com.target.util.CntrlmProcessor.main(CntrlmProcessor.java:24)
Caused by: java.time.DateTimeException: Unable to obtain LocalDateTime from TemporalAccessor: {DayOfMonth=3, MonthOfYear=2, WeekBasedYear[WeekFields[SUNDAY,1]]=2014},ISO resolved to 13:16:31 of type java.time.format.Parsed
at java.time.LocalDateTime.from(LocalDateTime.java:461)
at java.time.format.Parsed.query(Parsed.java:226)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1851)
从错误看起来,库可以解析字符串,因为它将时间戳中的所有字段分开,但似乎有些东西我不知道。
我试图仅解析时间戳的时间部分而且工作得很好。
答案 0 :(得分:12)
如果您在模式中使用yyyy
而不是YYYY
,那么您提供的代码就可以使用。 YYYY
是"以周为基础的年份"通常只有在您同时指定周数和星期几(例如YYYY-ww-EEE
的模式)时才会使用。这非常罕见。
请注意即使只是"年"有yyyy
和uuuu
- yyyy
是"年代的时代" (这总是非负面的 - 并且在格里高利历中始终是正面的)而uuuu
是一种无法生存的年份" - 例如,5BCE是-4岁无年。如果您不需要在共同时代(或其他日历系统中的日期)之前处理日期,您可能不必担心这一点。
我还建议将代码重写为:
DateTimeFormatter format = new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.appendPattern("dd-MMM-yyyy HH:mm:ss")
.toFormatter();
......为了简单起见。