我正在将应用程序从java 1.4迁移到1.7,
我遇到的一个运行时错误是类强制转换异常:
java.lang.ClassCastException: com.sun.org.apache.xerces.internal.dom.DocumentImpl cannot be cast to org.apache.crimson.tree.XmlDocument
代码:
doc = getDocBuilder().parse(inputSource); // returning DeferredDocumentImpl
((XmlDocument) doc).changeNodeOwner(rootElement); // casting Exception here
是否有任何解决方法来转换这两种类型?