Java 日历总是显示相同的时间

Java Calendar always shows the same time(Java 日历总是显示相同的时间)
本文介绍了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 日历总是显示相同的时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Month is not printed from a date - Java DateFormat(月份不是从日期打印的 - Java DateFormat)
java get week of year for given a date(java获取给定日期的一年中的一周)
Get the number of days, weeks, and months, since Epoch in Java(获取自 Java 中的 Epoch 以来的天数、周数和月数)
Is there a good way to get the date of the coming Wednesday?(有什么好方法可以得到即将到来的星期三的日期吗?)
Calendar view for Android GingerBread and before (APIlt;11)(Android GingerBread 及之前的日历视图 (API11))
How to save and retrieve Date in SharedPreferences(如何在 SharedPreferences 中保存和检索日期)