Here you can find the source of toXML(Object o)
public static String toXML(Object o)
//package com.java2s; import java.io.StringWriter; public class Main { public static String toXML(Object o) { StringWriter writer = new StringWriter(); javax.xml.bind.JAXB.marshal(o, writer); return writer.toString(); }/* w w w . j av a2 s .com*/ }