没有找到类定义
我想使用 C# 运行 .bat 文件。 为此,我手动设置了 JDK1.6 的类路径。但它给出了一个错误,
"java.lang.NoClassDefFoundError: org/apache/xalan/xslt/process"
如何删除它。
I want to run a .bat file using c#.
for this I set the class path of the JDK1.6 manually.but it is giving an error
"java.lang.NoClassDefFoundError: org/apache/xalan/xslt/process"
how this can be removed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是必须添加到类路径中的第三方库依赖项。找到该 JAR 文件并在 java 命令中引用它。
This is a third party library dependency that must be added to the classpath. Find the JAR file for this and reference it in your java command.
您需要添加
xalan.jar
及其依赖项http:// xml.apache.org/xalan-j/downloads.html
You need to add
xalan.jar
and its dependencieshttp://xml.apache.org/xalan-j/downloads.html