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

In calendar class, roll(int,boolean) increments date but not DAY_OF_WEEK field.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.1.4
    • 1.1.4
    • core-libs
    • None
    • 1.1.4
    • x86
    • windows_nt
    • Not verified

      Sorry, shouldn't have opened this. I tested on 1.1.3. This is fixed in 1.1.4

      Name: diC59631 Date: 10/08/97


      import java.util.*;

      class ch {
         public static void main (String args[]) {
            
      Date d = new Date(97,6,25);
               Calendar cal = Calendar.getInstance();
      cal.setTime(d);
               System.out.println(cal.getTime());
      //cal.computeFields();
      System.out.println(cal.get(Calendar.DAY_OF_WEEK));
      cal.roll(Calendar.DATE, true);

               System.out.println(cal.getTime());
               System.out.println(cal.get(Calendar.DAY_OF_WEEK));
         }
      }
      ======================================================================

            busersunw Btplusnull User (Inactive)
            dindrigo Daniel Indrigo (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: