Serialize with java 7, deserialize with java 6?

Any idea if the standard (standard) serialization from java 7 is to be read (deserialized) with java 6?

+3


source to share


1 answer


It can be read if you are not serializing any of the classes added in Java 7. ie you still need every class used on the receiving end.



BTW There were incompatible changes between Java 1.3 and 1.4 AFAIK. You should be back to Java 1.4.

+4


source







All Articles