View Single Post
  #2 (permalink)  
Old 05-31-2007, 06:18 PM
Valeriano Valeriano is offline
Member
 
Join Date: May 2007
Posts: 10
Valeriano is on a distinguished road
For anything you want to have serialized declare its class implements Serializable.

For anything field you want to skip on serialization declare the field transient.

Here is the tutorial:

Discover the secrets of the Java Serialization API
Reply With Quote