似乎有一些关于这个问题的帮助主题,但我没有找到一个解决方案,一直困扰着我。
我必须使用下面的xml结构:
<Customer xmlns="http://www.somedomain.com/customer-example">
<Name>David Brent</Name>
<Notes>Big time</Notes>
</Customer>
它还有其他领域,但即使使用这种最小化设置,我也无法让它工作。
我的pojo:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"name",
"notes"
})
@XmlRootElement(name = "Customer")
public class Customer {
@XmlElement(name = "Name", required = true)
public String name;
@XmlElement(name = "Notes", required = true)
public String notes;
public String getName() {
return name;
}
public void setName(String value) {
this.name = value;
}
...
...
}
客户:
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Customer.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
Customer customer = (Customer)unmarshaller.unmarshal(new File("Data.xml"));
System.out.println("Customer: "+customer.getName());
}
抛出异常:
Exception in thread "main" javax.xml.bind.UnmarshalException:
unexpected element (uri:"", local:"root"). Expected elements are <{}Customer>
什么是local:root ???如果我试图用另一种方式解析它
JAXBContext jc = JAXBContext.newInstance(Customer.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
StreamSource streamSource = new StreamSource("Data.xml");
JAXBElement<Customer> customer = (JAXBElement<Customer>).
unmarshaller.unmarshal(streamSource, Customer.class);
customer.getValue.getName(); //is null
这个问题是否与我的xml中的xmlns定义有关?
将Netbeans 7.3.1与Java 1.7 OpenJDK一起使用
答案 0 :(得分:0)
基于异常的Data.xml
的根元素是root
而不是Customer
由您期望的命名空间限定。要解决此问题,您可以像完成此操作一样使用unmarahal
方法,该方法采用Class
参数。
您获得null
属性name
的原因是您没有正确映射名称空间限定。您可以使用包级别@XmlSchema
注释来执行此操作。以下内容将帮助您映射到名称空间:
答案 1 :(得分:0)
是的,正如Blaise所说,你缺少命名空间定义。
@XmlRootElement(name = "Customer", namespace="http://www.somedomain.com/customer-example")