/** * 解析xml(忽略命名空间) * @p
aram cla * @p
aram content * @return * @throws JAXBException * @throws ParserCon
figurationException * @throws SAXException */ public static Object unmarshall(Class<?> cla,String content) throws JAXBException,ParserCon
figurationException,SAXException { JAXBContext jaxbContext = JAXBContext.newInstance(cla); Unmarshaller unmarshaller = jaxbContext.createUnmarshaller(); StringReader reader = new StringReader(content); SAXParserFactory sax = SAXParserFactory.newInstance(); sax.setNamespaceAware(false); XMLReader xmlReader = sax.newSAXParser().getXMLReader(); Source source = new SAXSource(xmlReader,new InputSource(reader)); Object o = unmarshaller.unmarshal(source); return o ; }