I have been trying to do a little project that needs an appendable ObjectOutputStream. I have gone through a couple of solutions and i found this It seemed to solve my probl
Try it like this....
readObject() returns the objects of type Object, so you need to explicitly cast them into its original types...
readObject()
objects
Object
Eg:
PPAccount pa = (PPAccount) readObject();