filmov
tv
21 - Java Serialization with Java Objects as Collection - Code Demo

Показать описание
@backstreetbrogrammer
--------------------------------------------------------------------------------
Chapter 08 - Serialization with Java Objects as Collection
--------------------------------------------------------------------------------
If we have a collection (List, Set, etc) of a serializable class objects, the whole collection can be serialized in one go by just calling writeObject() method from ObjectOutputStream class.
We need to ensure that every element in the collection is Serializable, otherwise the serialization will fail.
Similarly, while deserialization, the whole collection object can be read by calling readObject() method from ObjectInputStream class.
#java #javadevelopers #javaprogramming #javaserialization
--------------------------------------------------------------------------------
Chapter 08 - Serialization with Java Objects as Collection
--------------------------------------------------------------------------------
If we have a collection (List, Set, etc) of a serializable class objects, the whole collection can be serialized in one go by just calling writeObject() method from ObjectOutputStream class.
We need to ensure that every element in the collection is Serializable, otherwise the serialization will fail.
Similarly, while deserialization, the whole collection object can be read by calling readObject() method from ObjectInputStream class.
#java #javadevelopers #javaprogramming #javaserialization