jaxb解析xml忽略命名空间

前端之家收集整理的这篇文章主要介绍了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 ; } 原文链接:https://www.f2er.com/xml/296481.html

猜你在找的XML相关文章