如何编译具有 jar 依赖项的 java 文件?

发布于 2025-01-01 21:40:35 字数 148 浏览 0 评论 0原文

我有一个我写的位于 Apache Commons 之上的帮助程序库,当我尝试 javac 它(以便我可以将其放入 jar 中)时,它相当合理地抱怨它不知道我在说什么关于我何时引用 commons.jar 中的内容。

如何包含一个 jar 以便 javac 可以编译?

I have a helper lib that I wrote to sit on top of Apache Commons, and when I try to javac it (so that I can make it into a jar) it complains, quite reasonably, that it has no idea what I'm talking about when I make reference to the stuff that's in the commons.jar.

How does one include a jar so as that javac can compile?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

橘亓 2025-01-08 21:40:35

对于 Windows:

javac -cp ".;/dir/commons.jar;/dir/more_jar_files.jar" MyClass.java

对于 unix 或 mac(感谢 Dawood 的提示):

javac -cp ".:/dir/commons.jar:/dir/more_jar_files.jar" MyClass.java

这意味着:

javac -cp <path to jar> MyClass.java

For windows:

javac -cp ".;/dir/commons.jar;/dir/more_jar_files.jar" MyClass.java

For unix or mac (thanks for the tip Dawood):

javac -cp ".:/dir/commons.jar:/dir/more_jar_files.jar" MyClass.java

Which means:

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