功能'http://apache.org/xml/features/standard-uri-conformant'的SAXNotRecognizedException

时间:2012-08-10 12:57:49

标签: java xml jaxb saxparser

任何人都知道为什么我在下面的代码中遇到异常。我正在使用Java 6.

final XMLReader reader = XMLReaderFactory.createXMLReader();
reader.setFeature("http://xml.org/sax/features/validation", doValidate);
reader.setFeature("http://apache.org/xml/features/validation/schema", doValidate);
reader.setFeature("http://apache.org/xml/features/standard-uri-conformant", doValidate);


org.xml.sax.SAXNotRecognizedException: Feature 'http://apache.org/xml/features/standard-uri-conformant' is not recognized

2 个答案:

答案 0 :(得分:5)

找到解决方案:

将xercesImpl 2.9.1添加到我的类路径中,而不是使用内部Java 6捆绑版本的Xerces。

答案 1 :(得分:1)

在进行Spring和Rest Webservice Jersey的集成时遇到此问题

解决方案

删除了以下广告
的Xerces-2.6.2.jar
xercesImpl-2.11.0.jar
XML-apis.jar

<强>加

JAXP-API-1.4.2.jar