I have:
class MyClass extends MyClass2 implements Serializable {
//...
}
In MyClass2 is a property that is not serializable. How can I serialize (and de-serialize) this object?
Correction: MyClass2 is, of course, not an interface but a class.
|
|
I have:
In MyClass2 is a property that is not serializable. How can I serialize (and de-serialize) this object? Correction: MyClass2 is, of course, not an interface but a class.
|
||||
|
|
|
As someone else noted, chapter 11 of Josh Bloch's Effective Java is an indispensible resource on Java Serialization. A couple points from that chapter pertinent to your question:
I've written a quick example below illustrating this.
|
||
|
|
|
|
You will need to implement writeObject() and readObject() and do manual serialization/deserialization of those fields. See the javadoc page for java.io.Serializable for details. Josh Bloch's Effective Java also has some good chapters on implementing robust and secure serialization. |
||
|
|
|
Depends why that member of MyClass2 isn't serializable. If there's some good reason why MyClass2 can't be represented in a serialized form, then chances are good the same reason applies to MyClass, since it's a subclass. It may be possible to write a custom serialized form for MyClass by implementing readObject and writeObject, in such a way that the state of the MyClass2 instance data in MyClass can be suitably recreated from the serialized data. This would be the way to go if MyClass2's API is fixed and you can't add Serializable. But first you should figure out why MyClass2 isn't serializable, and maybe change it. |
|||
|
|
|
|
You can start by looking into the transient keyword, which marks fields as not part of the persistent state of an object. |
||
|
|
|
|
declare your property transient and it won't be serialized.
|
||
|
|
|
|
XStream is a great library for doing fast Java to XML serialization for any object no matter if it is Serializable or not. Even if the XML target format doesn't suit you, you can use the source code to learn how to do it. |
||
|
|
|
|
MyClass2 is just an interface so techinicaly it has no properties, only methods. That being said if you have instance variables that are themselves not serializeable the only way I know of to get around it is to declare those fields transient. ex:
When you declare a field transient it will be ignored during the serialization and deserialization process. Keep in mind that when you deserialize an object with a transient field that field's value will always be it's default (usually null.) Note you can also override the readResolve() method of your class in order to initialize transient fields based on other system state. |
|||
|
|
|
|
A useful approach for serialising instances of non-serializable classes (or at least subclasses of) is known a Serial Proxy. Essentially you implement writeReplace to return an instance of a completely different serializable class which implements readResolve to return a copy of the original object. I wrote an example of serialising java.awt.BasicStroke on Usenet |
||
|
|
|
|
Several possibilities poped out and i resume them here:
|
||
|
|
|
|
Well, since you can't implement a class and interfaces can't have fields, I think you're probably "A-OK". :-) |
||
|
|