-
Bug
-
Resolution: Fixed
-
P3
-
1.2.0
-
1.2fcs
-
x86, sparc
-
solaris_2.4, solaris_2.5, windows_nt
-
Verified
Name: avC70361 Date: 05/18/98
The java.util.TimeZone is incorrectly deserialized in
jdk1.2-beta4 when have been serialized in jdk1.1.6. The
java.io.InvalidClassException is thrown.
Here is the test demonstarating the bug.
--------------TimeZoneTest.java--------
import java.io.*;
import java.util.TimeZone;
public class TimeZoneTest {
public static void main(String args[]) {
TimeZone tz = TimeZone.getTimeZone("PST");
if (args[0].equals("write")) {
ObjectOutputStream stream = null;
try {
stream = new ObjectOutputStream(new FileOutputStream(args[1]));
stream.writeObject(tz);
stream.close();
} catch(IOException e) {
System.out.println("Couldn't write to " + args[1] + " : " + e);
System.exit(1);
}
System.out.println(args[1] + " written successfully");
} else if (args[0].equals("read")) {
ObjectInputStream stream = null;
try {
stream = new ObjectInputStream(new FileInputStream(args[1]));
tz = (TimeZone)stream.readObject();
} catch(InvalidClassException e) {
System.out.println("Failed:" + e);
System.exit(1);
} catch(Exception e) {
System.out.println(
"Failed: couldn't read from" + args[1] + " : " + e
);
System.exit(1);
}
System.out.println("Passed");
}
System.exit(0);
}
}
-------------The test output-----------
Under jdk1.1.6:
<avv@stardust(pts/13).440> java -fullversion
java full version "JDK1.1.6N"
<avv@stardust(pts/13).441> javac TimeZoneTest.java
<avv@stardust(pts/13).442> java TimeZoneTest write file.ser
file.ser written successfully
<avv@stardust(pts/13).443> java TimeZoneTest read file.ser
Passed
Under jdk1.2beta4:
<avv@stardust(pts/2).643> java -fullversion
java full version "JDK-1.2beta4-F"
<avv@stardust(pts/2).644> java TimeZoneTest read file.ser
Failed:java.io.InvalidClassException: java.util.TimeZone; Local class not compatible: stream classdesc serialVersionUID=3581463369166924961 local class serialVersionUID=4294478135497695983
======================================================================
- duplicates
-
JDK-4147497 The serializable class java.util.TimeZone evolved incompatibly.
-
- Closed
-