背景:我正在尝试使用JAXB解组器将XML解析为对象。
我所做的事情::我使用JAXB本身来生成对象类,并编写了一些方法来解组xml。
public void xmlParser() {
try {
Acquirer acquirer = (Acquirer) readXml(Constants.XML_PATH);
System.out.println(acquirer.getDate());
} catch (JAXBException | IOException e) {
e.printStackTrace();
}
}
/**
* Initializes of JAXB Context and Unmarshaller.
*/
private static void createContext() {
try {
jaxbContext = JAXBContext.newInstance("com.test.xml.generated");
unmarshaller = jaxbContext.createUnmarshaller();
} catch (JAXBException e) {
e.printStackTrace();
}
}
/**
* This reads the XML file from the resources in ClassPath.
*
* @param xmlFile XML file name as String with relative ClassPath
* @return Unmarashalled XML file
* @throws JAXBException
* @throws IOException
* @throws Exception
*/
public Object readXml(String xmlFile) throws JAXBException, IOException {
if (jaxbContext == null) {
createContext();
}
InputStream stream = getClass().getClassLoader().getResourceAsStream(xmlFile);
BufferedInputStream buffredStream = new BufferedInputStream(stream);
***Error:***
Object obj = unmarshaller.unmarshal(buffredStream);
buffredStream.close();
stream.close();
return obj;
}
错误在对象obj .....
中例外:
javax.xml.bind.UnmarshalException - with linked exception:
[java.io.IOException: Stream closed]
at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:246)
at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:214)
at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:157)
at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:125)
我设法搜索的内容:我使用xml验证程序来验证xml,这看起来还不错。我还看到有人建议不要使用InputStream等。因此,我尝试使用File file = new File();。没有。此外,我尝试检查自动生成的对象类,但没有发现任何可疑的东西。 @XmlElement和Root似乎定义得很好。
PS 。我有此xml的xsd方案(我使用此xsd生成了所有对象类)。我什至使用在线工具来验证它们,一切似乎都正确。
Constants.XML_PATH =“ /Acquirer.xml”;
答案 0 :(得分:0)
只需更改:
InputStream stream = getClass().getClassLoader().getResourceAsStream(xmlFile);
上:
InputStream stream = getClass().getResourceAsStream(xmlFile);
因为当您使用getClass().getClassLoader().getResourceAsStream(xmlFile)
时,它返回null
(找不到资源),而BufferedInputStream
然后在提供IOException
时抛出null
而不是将流实例输入构造函数。