XStream Library | |
Developer: | Codehaus |
Latest Release Version: | 1.4.20 |
Operating System: | Cross-platform |
Programming Language: | Java |
License: | BSD-style license |
XStream is a Java library to serialize objects to XML (or JSON) and back again.
NOTE: Not to confuse with XStream stream processing platform at Meta.
XStream uses reflection to discover the structure of the object graph to serialize at run time, and doesn't require modifications to objects. It can serialize internal fields, including private and final, and supports non-public and inner classes.[1]
When serializing an object it serializes the full object graph. Duplicate references encountered in the object-model will be maintained. For example, using the following class CD
// adds itself (cycle)order.add(order);
XStream xstream = new XStream;xstream.alias("cd", Cd.class);System.out.println(xstream.toXML(order));If the above code is executed with XStream's default relative references mode, it will generate the following XML:
XStream is free software, distributed under a permissive, revised BSD-style licence.