我正在尝试将以下 XML 文档解组为 JAXB java 对象。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<company>
<name>ABC Inc</name>
<address>123 1st Street, My City, AB</address>
<employees>
<employee>
<firstName>John</firstName>
<lastName>Doe</lastName>
</employee>
<employee>
<firstName>John2</firstName>
<lastName>Doe2</lastName>
</employee>
</employees>
</company>
使用以下 java 代码,但子集合 (company.getEmployees()) 不包含任何元素,即使 XML 包含两个元素。
JAXBContext jc = JAXBContext.newInstance("com.abc");
Unmarshaller unmarshaller = jc.createUnmarshaller();
JAXBElement<Company> root = unmarshaller.unmarshal(new StreamSource(new FileInputStream( "TestCompany.xml" )), Company.class);
Company company = root.getValue();
List<Employee> employees = company.getEmployees();
以下是 JAXB 生成的类:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "company", propOrder = {
"name",
"address",
"employees"
})
public class Company {
@XmlElement(required = true)
protected String name;
@XmlElement(required = true, nillable = true)
protected String address;
protected List<Employee> employees;
public String getName() {
return name;
}
public void setName(String value) {
this.name = value;
}
public String getAddress() {
return address;
}
public void setAddress(String value) {
this.address = value;
}
public List<Employee> getEmployees() {
if (employees == null) {
employees = new ArrayList<Employee>();
}
return this.employees;
}
}
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "employee", propOrder = {
"firstName",
"lastName"
})
public class Employee {
@XmlElement(required = true)
protected String firstName;
@XmlElement(required = true)
protected String lastName;
public String getFirstName() {
return firstName;
}
public void setFirstName(String value) {
this.firstName = value;
}
public String getLastName() {
return lastName;
}
public void setLastName(String value) {
this.lastName = value;
}
}