获取 24 小时制的当前时间和日期

发布于 2024-12-02 18:04:46 字数 290 浏览 1 评论 0 原文

我在获取 24 小时时间刻度上的当前时间时遇到问题。据我所知,“HH”应该代表 24 小时时间尺度上的当前小时,但是,由于某种原因,“HH”根本没有被解释。这就是为什么以下代码行输出类似 "HH:50:06 Uhr, 02. Sep."

DateFormat.format("HH:mm:ss 'Uhr', dd. MMM", new Date());

知道我做错了什么吗?但是,使用“hh”可以,这会以 12 小时为单位输出时间,这不是我想要做的。

感谢帮助!

I am having problems getting the current time on a 24 hour timescale. As far as I know, "HH" should represent the current hour on a 24 hour timescale, however, for some reason, "HH" is not interpreted at all. This is why the following line of code outputs something like "HH:50:06 Uhr, 02. Sep.":

DateFormat.format("HH:mm:ss 'Uhr', dd. MMM", new Date());

Any ideas what I am doing wrong? Using "hh" works, however, this will output the time on a 12 hour scale, which is not what I'd like to do.

Help's appreciated!

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

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

发布评论

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

评论(3

假情假意假温柔 2024-12-09 18:04:46

您可以使用 SimpleDateFormat 按照您喜欢的方式格式化它,这有效:

SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
String str = sdf.format(new Date());

还有Android 版本的文档

You can use SimpleDateFormat to format it the way you like, this works:

SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
String str = sdf.format(new Date());

Also Android version of docs.

转身泪倾城 2024-12-09 18:04:46

HH 是一天中小时的格式说明符,采用 24 小时格式(0-23;偏移量为 0),仅当您使用 SimpleDateFormat 用于格式化日期的类。

您正在使用 android.text.format.DateFormat class 类的“noreferrer">format 方法,不使用此表示法;相反,它使用符号 k/< code>kk 用于以 24 小时格式显示时间。
因此,必须按以下方式指定日期格式字符串:

DateFormat.format("kk:mm:ss 'Uhr', dd. MMM", new Date());

HH is the format specifier for hour of the day in the 24-hour format (0-23; with an offset of 0) only when you utilize the SimpleDateFormat class for formatting dates.

You are using the format method of the android.text.format.DateFormat class class, that does not employ this notation; instead it uses the symbol k/kk for displaying hours in the 24-hour format.
Therefore, your date format string must be specified in the following manner:

DateFormat.format("kk:mm:ss 'Uhr', dd. MMM", new Date());
温柔戏命师 2024-12-09 18:04:46

试试这个:

      SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
      String s = sdf.format(new Date());

Try this:

      SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
      String s = sdf.format(new Date());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文