I have map collection like this:
Map<File,Boolean> status = new HashMap<File,Boolean>();
Wrote it to file using serializable then i must edit collection(status) by adding new element
or remove one or more element.
Serializable edit (write changed thing just) to file by add and remove element or empties it and fill it again as object?
and how (if i can) to add or remove elements from file??
for any thing not clear ask me plz
It is not possible remove only the part of file. Every time when You make changes in the map, You must to overwrite the whole file. See my example: