我们有一个需要解组的 xml 文件(转换为 Java 对象)。现在 Java 对象是第三方的,我无法对其进行注释以进行解组。关于如何在没有注释的情况下解组的任何想法。请在下面找到我的代码片段
JAXBContext context;
try {
context = JAXBContext.newInstance(Abc.class);
Unmarshaller unMarshaller = context.createUnmarshaller();
Abc abc= (Abc) unMarshaller.unmarshal(new FileInputStream("C:\\Documents and Settings\\sandeep.nair\\Desktop\\abc.xml"));
} catch (JAXBException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}catch (Exception e){
}
我收到以下异常。一个无参数构造函数(我知道我可以通过为适配器添加注释来解决这个问题,但我想知道或查看一个示例片段以在没有注释的情况下处理它)
同样,我收到另一条关于接口无法由 JAXB 处理的消息。
com.sun.xml.bind.v2.runtime.IllegalAnnotationsException:5 个 IllegalAnnotationExceptions java.sql.Timestamp 没有无参数默认构造函数。此问题与以下位置有关:在 java.sql.Timestamp at public java.sql.Timestamp com.test.Abc.getSomeTimestamp() at com.riteaid.entities.customer.Customer com.test.Def 没有无参数默认构造函数。此问题与以下位置有关:在 com.test.Def...
java.sql.Date 没有无参数默认构造函数。此问题与以下位置有关:at java.sql.Date ... com.test.Ghi 是一个接口,而 JAXB 无法处理接口。此问题与以下位置有关: ... com.test.Ghi 没有无参数默认构造函数。此问题与以下位置有关:..