Saving Java Object Graphs as XML file -
what's simplest-to-use techonlogy available save arbitrary java object graph xml file (and able rehydrate objects later)?
the easiest way here serialize object graph. java 1.4 has built in support serialization xml.
a solution have used xstream (http://x-stream.github.io/)- it's small library allow serialize , deserialize , xml.
the downside can limited define resulting xml; might not neccessary in case.
Comments
Post a Comment