Java是否支持Julian日历?

前端之家收集整理的这篇文章主要介绍了Java是否支持Julian日历?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Oracle docs http://docs.oracle.com/javase/6/docs/technotes/guides/intl/calendar.doc.html声称Java支持3个日历系统:Gregorian,Japanese Imperial和Thai Buddhist. Java是否支持Julian日历?

解决方法

是的,它确实.

来自GregorianCalendar的文档:

GregorianCalendar is a hybrid calendar that supports both the Julian
and Gregorian calendar systems with the support of a single
discontinuity,which corresponds by default to the Gregorian date when
the Gregorian calendar was instituted (October 15,1582 in some
countries,later in others). The cutover date may be changed by the
caller by calling setGregorianChange().

使用setGregorianChange更改它.

public void setGregorianChange(Date date) Sets the GregorianCalendar change date. This is the point when the switch from Julian dates to Gregorian dates occurred. Default is October 15,1582 (Gregorian). PrevIoUs to this,dates will be in the Julian calendar. To obtain a pure Julian calendar,set the change date to Date(Long.MAX_VALUE). To obtain a pure Gregorian calendar,set the change date to Date(Long.MIN_VALUE).

原文链接:https://www.f2er.com/java/122520.html

猜你在找的Java相关文章