文章列表
利用JAXB编组XML-带命名空间时,由于jaxb-api.jar不支持命名空间,需要利用jaxb-impl.jar下拓展的命名空间功能。代码如下
[b]JAXBContext jc = JAXBContext.newInstance(clazz.getPackage().getName());
Marshaller m = jc.createMarshaller();
m.setProperty("com.sun.xml.bind.namespacePrefixMapper",
...