How to set time to 24 hour format in Calendar(如何在日历中将时间设置为 24 小时格式)
问题描述
我需要将时间设置在当前日期.时间字符串始终为 24 小时格式,但我得到的结果是错误的:
I need to set the time on the current date. The time string is always in 24 hour format but the result I get is wrong:
SimpleDateFormat df = new SimpleDateFormat("kk:mm");
Date d1 = df.parse("10:30");
Calendar c1 = Calendar.getInstance();
c1.set(Calendar.HOUR, d1.getHours());
c1.set(Calendar.MINUTE, d1.getMinutes());
日期应该是今天的日期,时间设置为 10:30.相反,c1 中的时间最终是 22:30.如何强制日历控件识别我的时间是 24 小时格式?
The date should be today's date and the time set to 10:30. Instead the time in c1 ends up being 22:30. How can I force the calendar control to recognize my time is 24 hour format?
如果我这样做:
Calendar c1 = Calendar.getInstance();
c1.set(Calendar.HOUR, 10);
c1.set(Calendar.MINUTE, 30);
这给了我同样的结果.为什么?
This gives me the same result. Why?
推荐答案
替换这个:
c1.set(Calendar.HOUR, d1.getHours());
用这个:
c1.set(Calendar.HOUR_OF_DAY, d1.getHours());
Calendar.HOUR 严格为 12 小时.
Calendar.HOUR is strictly for 12 hours.
这篇关于如何在日历中将时间设置为 24 小时格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在日历中将时间设置为 24 小时格式


- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 获取数字的最后一位 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 转换 ldap 日期 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01