如何将多个 jar 添加到类路径?

发布于 2024-09-12 19:52:53 字数 39 浏览 7 评论 0原文

我有超过 25 个 jar 文件,如何将它们全部添加到类路径中?

I am having more than 25 jar files how to add all of them in a classpath?

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

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

发布评论

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

评论(5

最终幸福 2024-09-19 19:52:53

如果所有jar文件都在同一个文件夹中,从jdk6开始,Java支持类路径通配符。
http://download.oracle.com/javase/ 6/docs/technotes/tools/windows/classpath.html

所以你可以使用类似的东西,

/路径/到/jar/*

还可以考虑为每个项目设置一个单独的类路径。

If all the jar files are in the same folder, as of jdk6, Java supports classpath wildcards.
http://download.oracle.com/javase/6/docs/technotes/tools/windows/classpath.html

So you can use something like,

/path/to/jar/*

Also consider having a separate classpath for each project.

别低头,皇冠会掉 2024-09-19 19:52:53

在 *nix / win 上用冒号/分号 (: / ;) 分隔它们

但是使用 IDE(Eclipse、NetBeans)来处理类路径会更容易为你。

Separate them with a colon / semicolon (: / ;) on *nix / win

But it would be way easier to use an IDE (Eclipse, NetBeans) to handle the classpath for you.

习ぎ惯性依靠 2024-09-19 19:52:53

此外,如果类路径太大而无法将其放在命令行上,则可以设置 CLASSPATH 环境变量(应设置为以分号分隔的 JAR 列表)。

Additionally, if the classpath is so big that you can't put this on a command line, you can set the CLASSPATH environment variable (which should be set to the semicolon-separated list of JARs).

樱桃奶球 2024-09-19 19:52:53

考虑使用 Maven 来管理您的依赖项。这对于防止 JAR 地狱大有帮助。

Consider using Maven to manage your dependencies. It'll go a long way to prevent JAR-hell.

夕嗳→ 2024-09-19 19:52:53

我使用eclipse,所以我需要先将它们放入一个文件夹中。
之后,如果我需要将其添加到构建路径,我只需转到构建路径选项即可浏览到该文件夹​​并选择全部。
您还可以通过浏览到文件夹并选择全部来轻松导入它们。

I use eclipse, so there is a for me to first put them into a folder.
After which if I need to add it to build path, I just go to the build path option to browse to the folder and select all.
You can also import them easily by browsing to the folder and select all too.

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