I want to write objects in human readable form in a text file, the file gets saved as a normal serialized object with unwanted characters instead.
How do I rewrite t
You can serialize / desirialize your class instances as XML with JAXB or JavaBeans. In both cases you need to prepare your class - to use annotations or setters / getters.