以下代码不起作用:(注意包含日期的字符串已本地化)
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd-MMM-yy", new Locale("es"));
LocalDate parse = LocalDate.parse("13-DIC-16", formatter);
我明白了:
java.time.format.DateTimeParseException: Text '13-DIC-16' could not be parsed at index 3
“索引3”是什么意思?
如何使用dd-MMM-yy格式解析java 8日期(使用正确的语言环境)?
我无法修改提供字符串的原始查询。