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);
}
}
}
======================================================================
- duplicates
-
JDK-4083167 Date is wrong after transitioning from PDT to PST
-
- Closed
-