-
Bug
-
Resolution: Fixed
-
P3
-
1.1, 1.1.1, 1.1.2, 1.1.3, 1.1.4, 1.2.0
-
1.2beta4
-
generic, x86, sparc
-
generic, solaris_2.5.1, windows_95, windows_nt
-
Not verified
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
- duplicates
-
JDK-4038617 Win32: Default instance of DateFormat has incorrect value
-
- Closed
-
-
JDK-4037643 Calendar.set(1950,6,3) creates "Sun Jul 02 ... 1950"; should be "Mon Jul 03 ...
-
- Closed
-
-
JDK-4052383 inDaylightTime() not working at boundaries
-
- Closed
-
-
JDK-4060343 date to string and string to data conversion
-
- Closed
-
-
JDK-4071905 DateFormat 2-digit year parsing faulty
-
- Closed
-
-
JDK-4080410 Switch from EDT to EST occurs on wrong day
-
- Closed
-
-
JDK-4038287 Daylight Savings Time of British Summer Time (GMT) incorrect
-
- Closed
-