如何一次性包含 CLASSPATH 中特定目录中存在的所有 jar?
我的应用程序使用的特定目录中有大约数百个罐子。所以我认为很难将每个罐子一一添加到类路径中。那么有没有任何命令或任何方法可以让我一次性添加所有罐子。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,从 Java6 开始,您可以使用通配符。请参阅“了解类路径通配符”部分
在 Java 6 之前,您必须单独指定它们。
Yes, you can use a wildcard, as of Java6. See the section on "Understanding class path wildcards"
Prior to Java 6, you had to specify them all individually.