官方网址:http://xstream.codehaus.org/
使用指南: http://xusweeter.iteye.com/blog/1064562
大概简略如下: XStream xstream = new XStream(new DomDriver()); xstream.alias("person", Person.class); String xml = xstream.toXML(joe);
哦了,结果类似如下:
<person> <firstname>Joe</firstname> <lastname>Walnes</lastname> <phone> <code>123</code> <number>1234-456</number> </phone> <fax> <code>123</code> <number>9999-999</number> </fax> </person>
反过来时,用这个方法,转型下就行了,超简单哈。 xstream.fromXML(String xml);
也支持List的转换,好像得拿一个对象, 内含一个list成员变量,然后转换这个对象就可以了。
|