How can I serialize an object that does not implement Serializable? I cannot mark it Serializable because the class is from a 3rd party library.
|
You should implement
I hope this makes sense. :-) |
|||||
|
|
If your class already implements the Serializable interface (required for serializing), all you must do is to declare the field you don't want to serialize with transient:
|
|||
|
|
|
Using java's built in serialization? You don't. There are other methods of serialization you should consider though, such as serializing to a markup language like XML, JSON, YAML... and so on. |
|||||||||
|
|
Wrap the non-serializable class in a class of your own that implements Alternatively, contact the developer of the non-serializable class and tell him to fix it. :-) |
|||
|
|
|
You would need to manually serialize it somehow. For instance, if it is an object storing, say, x, y and z co-ordinates, you could serialize it by making it into some string like "12.7, 13, 2.3", and deserialize it by extracting the values from said string. |
|||
|
|
|
If the class is not final, you can make your own class that extends it and implements Serializable. There are lots of other ways to serialize besides Java's built-in mechanism though. |
|||||||||||
|