gpt4 book ai didi

java - 以 AM/PM 格式显示时间

转载 作者:行者123 更新时间:2023-11-29 09:41:49 24 4
gpt4 key购买 nike

我已经编写了这段显示当前时间的代码,但我的问题是它不显示 am 或 pm 格式的时间,它只显示例如 12:00。没有上午或下午

    java.util.Calendar thetime = java.util.Calendar.getInstance();
int h = thetime.get(java.util.Calendar.HOUR_OF_DAY);
int m = thetime.get(java.util.Calendar.MINUTE);

System.out.println("the current time is"+ h +":"+m);

最佳答案

尝试添加:

int a_p = thetime.get(java.util.Calendar.AM_PM);
String am_pm;
if(a_p==0)
am_pm = "AM";
else
am_pm = "PM";

然后在输出的末尾添加 am_pm

无论如何你应该更喜欢 SimpleDateFormat,试着看看它 here .

关于java - 以 AM/PM 格式显示时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10171330/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com