作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试仅解析时间,忽略字符串中的工作日,格式如下:“Monday 5AM”
这是我的代码:
String dateTxt = "Monday 5AM";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("ha");
LocalTime lt = LocalTime.parse(dateTxt, formatter);
它抛出一个异常:
java.time.format.DateTimeParseException: Text 'Saturday 1AM' could not be parsed
如何仅从该字符串解析时间?
最佳答案
您需要将格式更改为
"EEEE ha"
我还建议设置区域设置,以便您拥有正确的语言并支持 AM/PM
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEEE ha", Locale.ENGLISH);
LocalTime
目的
LocalTime lt = LocalTime.parse(dateTxt, formatter);
DateTimeFormatter formatter2 = DateTimeFormatter.ofPattern("h a", Locale.ENGLISH);
System.out.println(lt);
System.out.println(lt.format(formatter2));
05:00
5 AM
关于java - 从包含周名和时间的字符串中解析时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66611056/
我是一名优秀的程序员,十分优秀!