没有找到类定义

发布于 2024-11-06 22:29:58 字数 164 浏览 2 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

他是夢罘是命 2024-11-13 22:29:58

这是必须添加到类路径中的第三方库依赖项。找到该 JAR 文件并在 java 命令中引用它。

java -cp [CLASSPATH]

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.

java -cp [CLASSPATH]
贵在坚持 2024-11-13 22:29:58

您需要添加 xalan.jar 及其依赖项

http:// xml.apache.org/xalan-j/downloads.html

You need to add xalan.jar and its dependencies

http://xml.apache.org/xalan-j/downloads.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文