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

Switch from EDT to EST occurs on wrong day

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.1.3
    • core-libs
    • x86
    • windows_95



      Name: diC59631 Date: 09/19/97


      //
      // This code will demonstrate (only until 24 October 1997) that the
      // Calendar (or perhaps the Date) object switches from Eastern Daylight
      // Time to Eastern Standard Time on Saturday, whereas the change should
      // occur at 02:00 on Sunday.
      //
      // Here is a snippet from the output:
      //
      // Wed Oct 22 11:32:53 EDT 1997
      // Thu Oct 23 11:32:53 EDT 1997
      // Fri Oct 24 11:32:53 EDT 1997
      // Sat Oct 25 10:32:53 EST 1997 <-- changes on wrong day
      // Sun Oct 26 10:32:53 EST 1997 <-- should change here
      // Mon Oct 27 10:32:53 EST 1997
      //

      import java.util.*;

      class edtbug
      {
          public static void main(String[] argv)
          {
              Calendar now = Calendar.getInstance();
              Date date;

              for (int i = 0; i < 50; i++)
              {
                  date = now.getTime();
                  System.out.println(date.toString());
                  now.add(Calendar.DATE, 1);
              }
          }
      }
      ======================================================================

            ssenthilsunw Shanmugam Senthil (Inactive)
            dindrigo Daniel Indrigo (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: