This works correctly under jdk1.2 & hotspot alpha2.
Name: js5519 Date: 02/09/99
Here is the sample program:
import java.util.*;
public class t {
public static void main(String[] args) {
java.sql.Date d1 = new java.sql.Date(97,8,26);
GregorianCalendar gc = new GregorianCalendar(1997,8,26);
java.sql.Date d2 = new java.sql.Date(gc.getTime().getTime());
System.out.println(d1);
System.out.println(d2);
System.out.println(d1.equals(d2));
}
}
Under JDK1.1.7 this returns:
1997-09-26
1997-09-26
false
Under JDK.2 the comparison works properly. Why?
(Review ID: 53936)
======================================================================