jaxb解析xml忽略命名空间

/** * 解析xml(忽略命名空间) * @param cla * @param content * @return * @throws JAXBException * @throws ParserConfigurationException * @throws SAXException */ public static Object unmarshall(Class<?> cla,String content) throws JAXBException,ParserConfigurationException,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 ; }

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念