问题是我想为" name"设置默认值。 input.xml文件中缺少的元素。如何通过jaxb实现这一点?我不想通过java模型来实现。有没有办法通过shema或jaxb获得它。 以下是代码:
1。 customer.xsd
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="customer">
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="stringMaxSize5" minOccurs="0" default="ss"/>
<xs:element name="phone-number" type="xs:integer" minOccurs="0" default="200" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="stringMaxSize5">
<xs:restriction base="xs:string">
<xs:maxLength value="5"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
2。 Customer.model
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"name",
"phoneNumber"
})
@XmlRootElement(name = "customer")
public class Customer {
@XmlElement(defaultValue = "ss")
protected String name;
@XmlElement(name = "phone-number", defaultValue = "200")
protected BigInteger phoneNumber;
public String getName() {
return name;
}
public void setName(String value) {
this.name = value;
}
public BigInteger getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(BigInteger value) {
this.phoneNumber = value;
}
}
第3。 input.xml中
<customer>
</customer>
使用以下代码进行解组:
SchemaFactory sf =SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
Schema schema = sf.newSchema(new File("customer.xsd"));
JAXBContext jc = JAXBContext.newInstance(Customer.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
unmarshaller.setSchema(schema);
Customer customer = (Customer) unmarshaller.unmarshal(new File("input.xml"));
System.out.println(customer.getName() + " " + customer.getPhoneNumber());
通过运行这个我得到名称的空值,如果我使用下面的input.xml文件&#34; name&#34; element然后我得到name字段的默认值。
input.xml file:
<customer><name/></customer>
那么,如何通过jaxb设置缺失元素的默认值?
答案 0 :(得分:0)
原因是您的XML文档缺少元素。请参阅JAXB guide
当类具有默认值的element属性时,如果您正在阅读的文档缺少元素,则 unmarshaller不会使用默认值填充该字段。 相反,当元素存在但内容缺失时,unmarshaller 填写字段
试试这个输入文件
p