Hi,
I saved a object in file with serialization method and then i change the class defination and after it i deserialize the object it will work or not?
//old class
Class A
{
int i;
}
//new class
class B
{
int a;
}
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hi,
I saved a object in file with serialization method and then i change the class defination and after it i deserialize the object it will work or not?
//old class
Class A
{
int i;
}
//new class
class B
{
int a;
}
Interesting question.
Try it and see.
Hi,
it does not work.
As i know when i try to save the object jvm also create hashcode(serialVersionUID ) for our class and also save it with the object.and when i pick the object from the memory after changing the name of the variable at that time hash code generated by the jvm for our class is different from the privous one that is save in memory so jvm throws class cast exception.
can any body explain what information jvm save with the object during Serialization.?
and how de serialization work?
ashish12169 (July 19th, 2013)