为什么解析“23:00 PM”会发生错误? 使用 SimpleDateFormat("hh:mm aa") 返回上午 11 点?
为什么使用 SimpleDateFormat("hh:mm aa")
解析“23:00 PM”会返回上午 11 点?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
为什么使用 SimpleDateFormat("hh:mm aa")
解析“23:00 PM”会返回上午 11 点?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
您应该会遇到异常,因为“23:00 PM”不是有效的字符串,但 Java 的日期/时间工具是 lenient 。
逻辑是 23:00 PM 是 11:00 PM 之后的 12 小时,即第二天的上午 11:00。 您还会看到“4 月 31 日”之类的内容被解析为“5 月 1 日”(4 月 30 日后的一天)。
如果您不希望出现此行为,请使用 DateFormat#setLenient(boolean),并且在传入无效日期/时间时会出现异常。
You should be getting an exception, since "23:00 PM" is not a valid string, but Java's date/time facility is lenient by default, when handling date parsing.
The logic is that 23:00 PM is 12 hours after 11:00 PM, which is 11:00 AM the following day. You'll also see things like "April 31" being parsed as "May 1" (one day after April 30).
If you don't want this behavior, set the lenient property to false on your SimpleDateFormat using DateFormat#setLenient(boolean), and you'll get an exception when passing in invalid date/times.
如果您要解析 24 小时时间,则需要“HH:mm aa”作为格式。
输出
You want "HH:mm aa" as your format, if you will be parsing 24-hour time.
outputs
您尝试过
HH:mm aa
吗?HH
表示 24 小时,而hh
表示 12 小时。Have you tried
HH:mm aa
?HH
is for 24 hour whilehh
is for 12.以下是 javadoc 中指定的格式选项
请注意,“h”代表 1-12 小时。 如果您想处理 1-24,请尝试“k”。 0-23 尝试“H”。 但如果您输入不可能的数据,我不会期望得到有效的结果。
Here are the formatting options specifed in the javadoc
Notice that "h" would be for hours 1-12. If you want to handle 1-24, try "k". for 0-23 try "H". But I would not expect valid results if you are putting in impossible data.
23:00 PM 可以被认为是第二天上午 11 点。 Javascript 和 PHP 的工作方式几乎与此类似,但我不能代表 Java。
23:00 PM could be thought of as 11 AM the next day. Javascript and PHP work like this pretty much but I can't speak for Java.
我猜它的作用如下:
确保时间在适当的范围内。
I would guess that it does something like:
to ensure that the hours are in the proper range.