2

我收到此错误无效格式:“09:30 PM”在“PM”格式错误

LocalTime start = new LocalTime();
LocalTime end = new LocalTime();
DateTimeFormatter formatter = DateTimeFormat.forPattern("hh:mm a");
start = formatter.parseLocalTime(from.toLowerCase());
end = formatter.parseLocalTime(to.toLowerCase());
4

1 回答 1

3

您的模式不正确。请使用以下内容:

DateTimeFormatter formatter= DateTimeFormat.forPattern("hh:mm aa");

编辑:这是DateTimeFormat 文档的链接。

于 2017-02-09T08:52:11.283 回答