Get java.util.Calendar from days since epoch(从纪元以来的天数获取 java.util.Calendar)
问题描述
我有一个变量,其中包含 纪元参考日期 code>1970-01-01 某个日期.
I have a variable containing the days since the epoch reference date of 1970-01-01
for a certain date.
有人知道如何将此变量转换为 java.util.Calendar
?
Does someone know the way to convert this variable to a java.util.Calendar
?
推荐答案
以下应该可以:
Calendar c = new GregorianCalendar();
c.setTime(new Date(0));
c.add(Calendar.DAY_OF_YEAR, 1000);
System.err.println(c.getTime());
<小时>
关于时区的说明:
A note regarding time zones:
使用运行程序的系统的默认时区创建一个新的 GregorianCalendar
实例.由于 Epoch 与 UTC(Java 中的 GMT)相关,因此必须小心处理任何不同于 UTC 的时区.下面的程序说明了这个问题:
A new GregorianCalendar
instance is created using the default time zone of the system the program is running on. Since Epoch is relative to UTC (GMT in Java) any time zone different from UTC must be handled with care. The following program illustrates the problem:
TimeZone.setDefault(TimeZone.getTimeZone("GMT-1"));
Calendar c = new GregorianCalendar();
c.setTimeInMillis(0);
System.err.println(c.getTime());
System.err.println(c.get(Calendar.DAY_OF_YEAR));
c.add(Calendar.DAY_OF_YEAR, 1);
System.err.println(c.getTime());
System.err.println(c.get(Calendar.DAY_OF_YEAR));
打印出来
Wed Dec 31 23:00:00 GMT-01:00 1969
365
Thu Jan 01 23:00:00 GMT-01:00 1970
1
这表明仅使用 e.g. 是不够的.c.get(Calendar.DAY_OF_YEAR)
.在这种情况下,必须始终考虑到它是一天中的什么时间.这可以通过在创建 GregorianCalendar
时显式使用 GMT 来避免:new GregorianCalendar(TimeZone.getTimeZone("GMT"))
.如果日历是这样创建的,则输出为:
This demonstrates that it is not enough to use e.g. c.get(Calendar.DAY_OF_YEAR)
. In this case one must always take into account what time of day it is. This can be avoided by using GMT explicitly when creating the GregorianCalendar
: new GregorianCalendar(TimeZone.getTimeZone("GMT"))
. If the calendar is created such, the output is:
Wed Dec 31 23:00:00 GMT-01:00 1969
1
Thu Jan 01 23:00:00 GMT-01:00 1970
2
现在日历返回有用的值.c.getTime()
返回的 Date
仍然关闭"的原因是 toString()
方法使用了默认的 TimeZone
来构建字符串.在顶部,我们将其设置为 GMT-1,因此一切正常.
Now the calendar returns useful values. The reason why the Date
returned by c.getTime()
is still "off" is that the toString()
method uses the default TimeZone
to build the string. At the top we set this to GMT-1 so everything is normal.
这篇关于从纪元以来的天数获取 java.util.Calendar的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从纪元以来的天数获取 java.util.Calendar


基础教程推荐
- 如何强制对超级方法进行多态调用? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01