代码如下:
Representation representation = representItem(exp.getItem(),MediaType.TEXT_XML);
Document doc = new SAXBuilder().build(representation.getStream());
XPath xpath = XPath.newInstance("/xnat:MRSession/xnat:scan/xnat:file");在实例化SAXBuilder时,这会给我一个InvocationTargetException错误。
有没有人以前有过这个?看起来这应该行得通。
2012-08-07 17:17:58,441 [http-8080-1] ERROR org.restlet.XNATVirtualHost.XNATApplication - Unhandled exception or error intercepted
java.lang.NoClassDefFoundError: org/jdom/input/SAXBuilder
at org.nrg.xnat.restlet.actions.SessionCopy.<init>(SessionCopy.java:98)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)发布于 2012-08-08 06:55:55
我在这里要说的是,虽然SAXBuilder可能在您的构建路径中,但它不在您的运行路径中。
https://stackoverflow.com/questions/11855014
复制相似问题