Java Calendar always shows the same time(Java 日历总是显示相同的时间)
问题描述
下面是我的代码.
public class TestCalendar {
public static void main(String[] args){
int unique_id = Integer.parseInt("" + Calendar.HOUR + Calendar.MINUTE
+ Calendar.SECOND);
System.out.println(unique_id);
}
}
Calendar.HOUR 应该给我
Calendar.HOUR is supposed to give me
public static final int HOUR 用于获取和设置的字段编号,指示早上的时间或下午.HOUR 用于 12 小时制 (0 - 11).中午和午夜用 0 表示,而不是到 12 点.例如,在晚上 10:04:15.250,HOUR 是 10.
public static final int HOUR Field number for get and set indicating the hour of the morning or afternoon. HOUR is used for the 12-hour clock (0 - 11). Noon and midnight are represented by 0, not by 12. E.g., at 10:04:15.250 PM the HOUR is 10.
无论我运行多少次代码,它总是给我相同的 unique_id.(101213),我机器上的当地时间是下午 1:30.我在这里做错了什么?
It doesnt matter how many times I run this code, it always gives me the same unique_id. (101213) and my local time on my machine is 1:30pm. What am I doing wrong here?
谢谢.
推荐答案
您的代码只是连接常量,Calendar 定义这些常量以识别其中的一些字段.要获取这些字段的值,请调用 Calendar.get()
并将常量标识符作为参数传递:
Your code is just concatenating constants, that the Calendar defines to identify some of it's fields. To get values of these fields, call Calendar.get()
and pass the constant identifier as an argument:
public class TestCalendar {
public static void main(String[] args){
Calendar c = Calendar.getInstance();
int unique_id = Integer.parseInt("" + c.get(Calendar.HOUR) + c.get(Calendar.MINUTE)
+ c.get(Calendar.SECOND));
System.out.println(unique_id);
}
}
上述方法可行,但结果与唯一 ID 相差甚远.要获得唯一标识时间点的 ID(精度为毫秒),请考虑 Calendar.getTimeInMillis()
.
The above would work, but the result will be far from unique ID.
To get an ID uniquely identifying a point in time (with the precision of milliseconds), consider Calendar.getTimeInMillis()
.
这篇关于Java 日历总是显示相同的时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 日历总是显示相同的时间


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