我想知道是否有任何方法可以使用 jaxb 从生成的 xml 中删除不需要的元素。我的 xsd 元素定义如下。
<xsd:element name="Title" maxOccurs="1" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
A name given to the digital record.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"></xsd:minLength>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
如您所见,它不是强制性元素,因为
minOccurs="0"
但如果它不为空,则长度应为 1。
<xsd:minLength value="1"></xsd:minLength>
在编组时,如果我将 Title 字段留空,
由于最小长度限制,它会抛出SAXException 。所以我想要做的是<Title/>
从生成的 XML 中删除整个出现。现在我已经删除了最小长度限制,所以它将<Title>
元素添加为EMPTY
<Title></Title>
但我不希望这样。感谢任何帮助。我正在使用 jaxb 2.0 进行编组。
更新:
以下是我的变量定义:
private JAXBContext jaxbContext;
private Unmarshaller unmarshaller;
private SchemaFactory factory;
private Schema schema;
private Marshaller marshaller;
编组代码。
jaxbContext = JAXBContext.newInstance(ERecordType.class);
marshaller = jaxbContext.createMarshaller();
factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
schema = factory.newSchema((new File(xsdLocation)));
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
ERecordType e = new ERecordType();
e.setCataloging(rc);
/**
* Validate Against Schema.
*/
marshaller.setSchema(schema);
/**
* Marshal will throw an exception if XML not validated against
* schema.
*/
marshaller.marshal(e, System.out);