当前位置: 首页 > 工具软件 > Saxon > 使用案例 >

DOMSource cannot be processed: check that saxon8-dom.jar is on the classpath解决,亲测有效

左丘烨烁
2023-12-01

可能的原因是使用Saxon编译器时,缺少saxon8-dom.jar文件。需要确保这个文件在编译器的类路径中。 解决方法:

  1. 下载saxon8-dom.jar文件,并将其放置在编译器的类路径中。
  2. 如果使用Maven项目管理工具,在pom.xml文件中添<dependency>
<dependency>
    <groupId>net.sf.saxon</groupId>
    <artifactId>saxon-dom</artifactId>
    <version>8.7</version>
</dependency>
  1. 如果使用Gradle项目管理工具,在build.gradle文件中添加以下依赖项:
dependencies {
    compile group: 'net.sf.saxon', name: 'saxon-dom', version: '8.7'
}

 类似资料: