如何一次性包含 CLASSPATH 中特定目录中存在的所有 jar?

发布于 2024-11-04 17:50:33 字数 116 浏览 1 评论 0原文

我的应用程序使用的特定目录中有大约数百个罐子。所以我认为很难将每个罐子一一添加到类路径中。那么有没有任何命令或任何方法可以让我一次性添加所有罐子。 some *.jar 应该添加所有 jar。

I have around hundreds of jars at a particular directory which my application uses. So I thought its hard to add each jars one by one to the classpath. So is there any command or any way so that i can add all the jars at one go. some *.jar should add all the jars.

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

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

发布评论

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

评论(1

明月松间行 2024-11-11 17:50:33

是的,从 Java6 开始,您可以使用通配符。请参阅“了解类路径通配符”部分

类路径条目可以包含基本名称通配符*,这被认为相当于指定目录中扩展名为.jar 或.JAR 的所有文件的列表。 例如,类路径条目 foo/* 指定名为 foo 的目录中的所有 JAR 文件。仅由 * 组成的类路径条目将扩展为当前目录中所有 jar 文件的列表。

在 Java 6 之前,您必须单独指定它们。

Yes, you can use a wildcard, as of Java6. See the section on "Understanding class path wildcards"

Class path entries can contain the basename wildcard character *, which is considered equivalent to specifying a list of all the files in the directory with the extension .jar or .JAR. For example, the class path entry foo/* specifies all JAR files in the directory named foo. A classpath entry consisting simply of * expands to a list of all the jar files in the current directory.

Prior to Java 6, you had to specify them all individually.

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