InterviewSolution
Saved Bookmarks
| 1. |
How Do I Serialize A Collection In Java? |
|
Answer» All standard implementations of collections List, Set and Map INTERFACE already IMPLEMENT java.io.SERIALIZABLE. However ensure all the objects ADDED in collection are Serializable as well. All standard implementations of collections List, Set and Map interface already implement java.io.Serializable. However ensure all the objects added in collection are Serializable as well. |
|