下面是找到的一个例子, 比较有趣, 而且简单. 将现成的类序列化到xml后可以在项目中作为测试数据, 需要的时候导入就可以了.
import com.thoughtworks.xstream.* class Staff { String firstname, lastname, position } def xstream = new XStream() def john = new Staff(firstname:'John', lastname:'Connor', position:'Resistance Leader') println xstream.toXML(john) //console输出转换的结果 new File("c:/john.xml").withOutputStream { out -> //打印到一个文件里 xstream.toXML(john, out) }
这个代码里实际上使用了xstream这个包, 通过这个工具包进行的转换, 关于这个包的介绍可以看XStream