-
Bug
-
Resolution: Fixed
-
P5
-
1.3.0
-
b28
-
generic
-
generic
Name: skT45625 Date: 08/03/2000
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
There seems to be an inconsistancy between GregorianCalendar.add
(Calendar.DAY_OF_YEAR, int) and the resulting GregorianCalendar.get
(Calendar.DAY_OF_YEAR)) for the default change over year 1582. In this year,
adding one day to October 4, the 277th day of the year, increments the calendar
to October 15 as expected. However, get(Calendar.DAY_OF_YEAR)) for October 15
returns 288, 11 days later. Is this the proper behavior? I would expect that
adding one day would increment the DAY_OF_YEAR by one as well.
This code:
GregorianCalendar testCal = (GregorianCalendar)Calendar.getInstance();
testCal.set(1582, Calendar.JANUARY, 1);
while(testCal.get(Calendar.YEAR)==1582){
System.out.println(testCal.getTime());
System.out.println(testCal.get(Calendar.DAY_OF_YEAR));
testCal.add(Calendar.DAY_OF_YEAR, 1);
}
will produce the following output:
Mon Jan 01 11:05:22 CST 1582
1
Tue Jan 02 11:05:22 CST 1582
2
Wed Jan 03 11:05:22 CST 1582
3
...
Wed Oct 03 11:05:22 CDT 1582
276
Thu Oct 04 11:05:22 CDT 1582
277
Fri Oct 15 11:05:22 CDT 1582
288
Sat Oct 16 11:05:22 CDT 1582
289
Sun Oct 17 11:05:22 CDT 1582
290
Mon Oct 18 11:05:22 CDT 1582
291
Tue Oct 19 11:05:22 CDT 1582
292
Wed Oct 20 11:05:22 CDT 1582
293
...
Wed Dec 29 11:05:22 CST 1582
363
Thu Dec 30 11:05:22 CST 1582
364
Fri Dec 31 11:05:22 CST 1582
365
(Review ID: 107948)
======================================================================
- relates to
-
JDK-4944795 API: GregorianCalendar: getMinimum(field)/getMaximum(field)/etc undefined
-
- Resolved
-