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

Date is wrong after transitioning from PDT to PST

XMLWordPrintable

    • 1.2beta4
    • generic, x86, sparc
    • generic, solaris_2.5.1, windows_95, windows_nt
    • Not verified

      I have the following test program, which gets the current time and
      date, prints it out, and then adds one day at a time to it for the
      bext 30 days.

      After transitioning from PDT to PST, the date and time printed out is
      wrong:

      Next time: Sat Oct 25 12:55:07 PST 1997
      Next time: Sat Sep 06 20:52:20 PDT 1997


      Here's the test program:

      import java.util.*;

      public class Test1 {

          public static void main(String[] argv) {

      Date firstDate = new Date();
      System.err.println("Current time: " + firstDate.toString());

      for (int validity=0; validity<30; validity++) {
      Date lastDate = new Date(firstDate.getTime() +
      validity*1000*24*60*60);
      System.err.println("Next time: " + lastDate.toString());
      }
          }
      }


      Here's the test program's output:

      Current time: Wed Oct 01 13:55:07 PDT 1997
      Next time: Wed Oct 01 13:55:07 PDT 1997
      Next time: Thu Oct 02 13:55:07 PDT 1997
      Next time: Fri Oct 03 13:55:07 PDT 1997
      Next time: Sat Oct 04 13:55:07 PDT 1997
      Next time: Sun Oct 05 13:55:07 PDT 1997
      Next time: Mon Oct 06 13:55:07 PDT 1997
      Next time: Tue Oct 07 13:55:07 PDT 1997
      Next time: Wed Oct 08 13:55:07 PDT 1997
      Next time: Thu Oct 09 13:55:07 PDT 1997
      Next time: Fri Oct 10 13:55:07 PDT 1997
      Next time: Sat Oct 11 13:55:07 PDT 1997
      Next time: Sun Oct 12 13:55:07 PDT 1997
      Next time: Mon Oct 13 13:55:07 PDT 1997
      Next time: Tue Oct 14 13:55:07 PDT 1997
      Next time: Wed Oct 15 13:55:07 PDT 1997
      Next time: Thu Oct 16 13:55:07 PDT 1997
      Next time: Fri Oct 17 13:55:07 PDT 1997
      Next time: Sat Oct 18 13:55:07 PDT 1997
      Next time: Sun Oct 19 13:55:07 PDT 1997
      Next time: Mon Oct 20 13:55:07 PDT 1997
      Next time: Tue Oct 21 13:55:07 PDT 1997
      Next time: Wed Oct 22 13:55:07 PDT 1997
      Next time: Thu Oct 23 13:55:07 PDT 1997
      Next time: Fri Oct 24 13:55:07 PDT 1997
      Next time: Sat Oct 25 12:55:07 PST 1997
      Next time: Sat Sep 06 20:52:20 PDT 1997 // WRONG!!!
      Next time: Sun Sep 07 20:52:20 PDT 1997
      Next time: Mon Sep 08 20:52:20 PDT 1997
      Next time: Tue Sep 09 20:52:20 PDT 1997
      Next time: Wed Sep 10 20:52:20 PDT 1997

            aliusunw Alan Liu (Inactive)
            jlueheorcl Jan Luehe (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: