Re: Serialization Problem
Posted By:
Anonymous
Posted On:
Friday, December 16, 2005 03:47 AM
serialization is the procee of writeing the state of an
object to a stream.
it's our responsibilty to explicitly store the object and
makeing it as jvm independent.
writeObject()---->method for writeing the state of an object.
readObject()----->method for reading and creating an object
of type that implements serializable interface.