Here you can find the source of getXmlObject(String xml, Class cls)
public static Object getXmlObject(String xml, Class cls)
//package com.java2s; import java.io.StringReader; import javax.xml.bind.JAXB; public class Main { /**/*from w w w. ja v a 2 s. c om*/ * get XML object for the xml string. */ public static Object getXmlObject(String xml, Class cls) { return JAXB.unmarshal(new StringReader(xml), cls); } }