为什么解析“23:00 PM”会发生错误? 使用 SimpleDateFormat("hh:mm aa") 返回上午 11 点?

发布于 2024-07-27 22:34:17 字数 78 浏览 7 评论 0 原文

为什么使用 SimpleDateFormat("hh:mm aa") 解析“23:00 PM”会返回上午 11 点?

Why does parsing '23:00 PM' with SimpleDateFormat("hh:mm aa") return 11 a.m.?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

怕倦 2024-08-03 22:34:17

您应该会遇到异常,因为“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.

无戏配角 2024-08-03 22:34:17

如果您要解析 24 小时时间,则需要“HH:mm aa”作为格式。

public static void main(String[] args) throws ParseException {
    SimpleDateFormat df = new SimpleDateFormat("HH:mm aa");
    final Date date = df.parse("23:00 PM");
    System.out.println("date = " + df.format(date));
}

输出

date = 23:00 PM

You want "HH:mm aa" as your format, if you will be parsing 24-hour time.

public static void main(String[] args) throws ParseException {
    SimpleDateFormat df = new SimpleDateFormat("HH:mm aa");
    final Date date = df.parse("23:00 PM");
    System.out.println("date = " + df.format(date));
}

outputs

date = 23:00 PM
她比我温柔 2024-08-03 22:34:17

您尝试过HH:mm aa吗?

HH 表示 24 小时,而 hh 表示 12 小时。

Have you tried HH:mm aa?

HH is for 24 hour while hh is for 12.

清醇 2024-08-03 22:34:17

以下是 javadoc 中指定的格式选项

H     Hour in day (0-23)    
k   Hour in day (1-24)  
K   Hour in am/pm (0-11)    
h   Hour in am/pm (1-12) 

请注意,“h”代表 1-12 小时。 如果您想处理 1-24,请尝试“k”。 0-23 尝试“H”。 但如果您输入不可能的数据,我不会期望得到有效的结果。

Here are the formatting options specifed in the javadoc

H     Hour in day (0-23)    
k   Hour in day (1-24)  
K   Hour in am/pm (0-11)    
h   Hour in am/pm (1-12) 

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.

北音执念 2024-08-03 22:34:17

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.

隔纱相望 2024-08-03 22:34:17

我猜它的作用如下:

hours = hours % 12;

确保时间在适当的范围内。

I would guess that it does something like:

hours = hours % 12;

to ensure that the hours are in the proper range.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文