com.thoughtworks.xstream.converters.reflection.SerializableConverter Emulates the mechanism used by standard Java Serialization for classes that implement java.io.Serializable AND implement a custom readObject()/writeObject() method. <h3>Supported features of serialization</h3> <ul> <li>readObject(), writeObject()</li> <li>class ...
com.thoughtworks.xstream.XStream Simple facade to XStream library, a Java-XML serialization tool. <p/> <p><hr><b>Example</b><blockquote><pre> XStream xstream = new XStream(); String xml = xstream.toXML(myObject); // serialize to XML Object myObject2 = xstream.fromXML(xml); // deserialize ...