Let say I have a file that contains a serialized object by BinaryFomatter. Now I want to be able to serialize another object and APPEND this on that existing file.
How can I do it?
|
2
|
Let say I have a file that contains a serialized object by BinaryFomatter. Now I want to be able to serialize another object and APPEND this on that existing file. How can I do it?
|
|||
|
|
|
|
First, if what you really need is to store an array of object - put them in a container and serialize the container, as said earlier. Now, if you really want to store two serialized object in a single file concatenated: I'm not sure that this is possible "out of the box", but you can do two things.
|
||
|
|
|
|
How's about this Deserialise the contents of your first file into an object in memory, add the first object to a collection (e.g. List |
||
|
|
|
|
Put your objects into a collection object and serialize like that. If you'd manage to append a binary representation of an object at the end of an existing file you'd get problems reading it back. |
||||||||||||
|
|
|
Actually, if you just open the stream for writing, and positioning the pointer at the end of the stream, you can serialize another object and it will be appended to the existing stream. Deserializing will also read past the object, but not further. Obviously, if you want random access to your objects (deserialize object nr. 17, but not everything before it), then you need an index of the positions where each object starts, but if you just want to read all objects from the start, you can just serialize them out after each other. |
||||||||
|
|
|
This is indeed possible. The code below appends the object.
The following code de-serializes the objects.
Note for this to work the file must only contain the same objects. |
||
|
|