JAXBContext.newInstance variations样品a.xml使用JAXB 解析代码
我正在类 JAXBContext 中试验各种形式的 newInstance 方法(我使用的是 Oracle JDK 1.7 附带的默认 Sun JAXB 实现)。
我不清楚什么时候可以将具体类与ObjectFactory类传递给newInstance方法。我应该注意,我使用JAXB纯粹是为了解析XML文件,即仅在XML->Java方向上。
以下是绝对最少的代码,可以证明我的观点:
xsd 文件
<?xml version="1.0" encoding="UTF-8"?>
<schema elementFormDefault="qualified"
xmlns ="http://www.w3.org/2001/XMLSchema"
xmlns:a ="http://www.example.org/A"
targetNamespace="http://www.example.org/A">
<element name="root" type="a:RootType"></element>
<complexType name="RootType">
<sequence>
<element name="value" type="string"></element>
</sequence>
</complexType>
</schema>
给定上述 XSD,以下 JAXBInstance.newInstance 调用成功地创建了一个可以解析示例 a.xml 文件的上下文:
- jc = JAXBContext.newInstance(“example.a”);
- jc = JAXBContext.newInstance(example.a.ObjectFactory.class);
- jc = JAXBContext.newInstance(example.a.RootType.class, example.a.ObjectFactory.class);
但是,单独传递示例.a.RootType.class在运行时使用javax.xml绑定.UnmarshalException时失败:
jc = JAXBContext.newInstance(example.a.RootType.class); // this fails at runtime.
任何人都可以透露一些光明吗?我在这些JAXBContext::newInstance变体上进行实验的原因是,我偶然发现了这个问题,其中接受的答案包括“基于单个类而不是对象工厂构建JAXB上下文”的选项。示例 a.xml和我使用的 JAXB Java 代码在本文末尾。
样品a.xml使用
<?xml version="1.0" encoding="UTF-8"?>
<a:root xmlns:a="http://www.example.org/A"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.example.org/A A.xsd">
<a:value>foo</a:value>
</a:root>
JAXB 解析代码
public static void main (String args[]) throws JAXBException, FileNotFoundException {
JAXBContext jc = null;
message("using package context (press any key:)");
jc = JAXBContext.newInstance("example.a");
work(jc); // SUCCEEDS
message("using Object factory (press any key):");
jc = JAXBContext.newInstance(example.a.ObjectFactory.class);
work(jc); // SUCCEEDS
message("using class enumeration (press any key):");
try {
jc = JAXBContext.newInstance(example.a.RootType.class);
work(jc); // FAILS
} catch (javax.xml.bind.UnmarshalException e) {
e.printStackTrace();
}
message("using class enumeration and Object factory too (press any key):");
jc = JAXBContext.newInstance(example.a.RootType.class, example.a.ObjectFactory.class);
work(jc); // SUCCEEDS
}
private static void work(JAXBContext jc) throws JAXBException, FileNotFoundException {
Unmarshaller u = jc.createUnmarshaller();
RootType root = ((JAXBElement<RootType>)u.unmarshal( new FileInputStream( "a.xml" ))).getValue();
System.out.println( root.getValue() );
}