使用groovy将类序列化到xml并输出

最近开始研究groovy,语法还是比较简洁的,跟用java的时候完全不一样.
下面是找到的一个例子, 比较有趣, 而且简单. 将现成的类序列化到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

你可能感兴趣的:(java,C++,c,xml,groovy)