我正在使用下面的内容来生成xml
JAXBContext context =
JAXBContext.newInstance(AdvertiserCorrectionData.class);
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT,
Boolean.TRUE);
marshaller.marshal(pos, getDestFile(key,true));
并且我的XML具有
之类的标记<tid></tid>
我希望将这些空标签转换为自动关闭标签<tid/>
。
我正在使用DTD,没有用于生成XML的XSD。