Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4359204

GregorianCalendar.get(Calendar.DAY_OF_YEAR) is inconsistant for year 1582

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P5 P5
    • 5.0
    • 1.3.0
    • core-libs
    • 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)
      ======================================================================

            okutsu Masayoshi Okutsu
            skondamasunw Suresh Kondamareddy (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: