2

What happens when I use an ObjectInputStream to read in a serialized object that is incompatible with the one currently defined in the program? Do I get an exception or just totally mangled data?

Does it make any difference if I updated the serialVersionUID (as required) when compiling the newer version?

I have looked around and can't seem to find what happens - only that you must update serialVersionUID.

theblitz
  • 6,683
  • 16
  • 60
  • 114

2 Answers2

1

This answer sums it up:

Imagine you have a class called Foo, and it has NO serialversionuid (the default), and you serialize an instance of Foo to a file. Later, you add some new members to the Foo class. If you try to deserialize the Foo object from the file, you will get a serialization failure stating that the objects are incompatible. They ARE incompatible, this is want you WANT and is the default. They are incompatible because new members in the Foo class cannot be initialized from the old serialized instance of Foo.

Now, you might say, "I don't care, in my application it is acceptable for those fields to be uninitialized". If that REALLY is the case, you can set the serialversionuid of the NEW Foo class to be the same as the OLD Foo class. This will tell Java that the objects are compatible with respect to serializablity, and Java will not complain when you deserialize the old Foo instance into the new Foo class (but the new fields will still be uninitialized).

If you are creating a new class for the first time, and you set the serialversionuid, YOU ARE ENTERING A CONTRACT. You are saying, "For all future versions of this class with the same serialversionuid, I will guarantee they are compatible with respect to state and serialization".

If you change a class, and you EXPLICITLY want to DISALLOW deserialization of old versions, you can change the serialversionuid to a new value. This will cause an exception to be thrown if an old object is attempted to be deserialized into a new class instance.

Community
  • 1
  • 1
Matt Ball
  • 354,903
  • 100
  • 647
  • 710
  • How about the idea given there of using the automatically defined value? Since the only time the stricture can change is between versions I really don't mind if I lose the current state at that point. It is only a card game so it is not the end of the world if once in a while you can't go back to exactly where you were. – theblitz Jun 02 '11 at 19:26
0

If the implicit or explicit serialVersionUIDs don't match, you get an exception like this:

java.io.InvalidClassException: SerialVersionUID; local class incompatible: stream classdesc serialVersionUID = 2, local class serialVersionUID = 3
user207421
  • 305,947
  • 44
  • 307
  • 483