如何在日历中将时间设置为24小时格式

编程入门 行业动态 更新时间:2024-10-24 21:29:09
本文介绍了如何在日历中将时间设置为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?

编辑: 如果我只是这样做:

If I just do this:

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小时格式

本文发布于:2023-10-30 22:52:54,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1544238.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:设置为   中将   日历   小时   格式

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!