×

Loading...
Ad by
  • 推荐 OXIO 加拿大高速网络,最低月费仅$40. 使用推荐码 RCR37MB 可获得一个月的免费服务
Ad by
  • 推荐 OXIO 加拿大高速网络,最低月费仅$40. 使用推荐码 RCR37MB 可获得一个月的免费服务

JAXB高手请进!紧急求助

公司在开发一个JAXB的系统,我想在unmarshal时把原来bind的 class unmarshal成自己 extend 的subclass, 用了第三方class:moon(在google搜索'moon context hawaii')::
MoonContext context = MoonContextFactory.getEformaMoonContext();
try {
context.register(Xform.class, XformVO.class);
context.register(Xfield.class, XformVO.class);
} catch (ClassNotFoundException e) {
e.printStackTrace ();
}
return (XformVO) context.createUnmarshaller ().unmarshal (bis);
现在return的类XformVO的元素Xfield unmarshal 出来还是不对(还是XfieldTypeImpl)。

有谁知道sun.xml.bind.unmarshaller.unmarshallImple的文档?
在goole上搜索不到。。。。
Report