Serializing Multiple Objects
We looked at Serializing a Single Object previously, but what if we need to serialize multiple objects, like an array? Serializing an Array Well, we can do that fairly easily as well. Java can take an array of objects, and serialize it. However, it will only work if you de-serialize it as an array. Consider…