-
Bug
-
Resolution: Fixed
-
P2
-
1.1
-
1.1
-
sparc
-
solaris_2.5
-
Not verified
=== Here is the test demonstrating the bug ===
class java_sql_Timestamp5 {
public static void main (String args[]) {
long time=System.currentTimeMillis(); // today is Oct 22, 1996
System.out.println("Date = " + new java.util.Date(time));
System.out.println("Timestamp = " + new java.sql.Timestamp(time));
// will print incorrect time
}
}
=== Here is the output of the test ===
Date = Tue Oct 22 12:37:08 PDT 1996
Timestamp = 1970-01-10 11:00:13.717
class java_sql_Timestamp5 {
public static void main (String args[]) {
long time=System.currentTimeMillis(); // today is Oct 22, 1996
System.out.println("Date = " + new java.util.Date(time));
System.out.println("Timestamp = " + new java.sql.Timestamp(time));
// will print incorrect time
}
}
=== Here is the output of the test ===
Date = Tue Oct 22 12:37:08 PDT 1996
Timestamp = 1970-01-10 11:00:13.717
- relates to
-
JDK-4015483 java.sql.Timestamp(long) constructor works wrong with negative values
-
- Closed
-