如何使用 ANT 在构建时将 JAR 内的目录包含到类路径中?

发布于 2024-10-22 03:14:57 字数 96 浏览 1 评论 0原文

我在项目的 lib 文件夹中有一个 JAR,并在使用 ANT 构建时尝试获取包含类路径上的属性文件的目录结构。有什么想法可以最好地在类路径上获得该结构吗?

谢谢!

I have a JAR in my lib folder of the project and trying to get the directory structure that contains property files on the classpath when building using ANT. Any ideas how best to the get that structure on the classpath?

Thanks!

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

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

发布评论

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

评论(1

ˇ宁静的妩媚 2024-10-29 03:14:57

我假设您想使用 property< 将属性文件加载到构建中/code>任务。

如果是这种情况,有几种选择。

首先,您可以使用任务的 url 形式,使用 jar url

<property url="jar:file:lib/my_jar.jar!/path/to/myfile.properties" />

或者,您可以使用 resource 形式,并将 jar 指定为类路径:

<property resource="/path/to/myfile.properties" classpath="lib/my_jar.jar"/>

如果您想做其他事情而不是加载属性,查看 javaresource - 许多任务都是能够将资源作为输入,因此您应该能够找到一种方法来做您想做的事情。

I'm assuming you want to load a properties file into your build using the property task.

If this is the case, there are a couple of options.

First you could use the url form of the task, using a jar url:

<property url="jar:file:lib/my_jar.jar!/path/to/myfile.properties" />

Alternatively you could use the resource form, and specify the jar as the classpath:

<property resource="/path/to/myfile.properties" classpath="lib/my_jar.jar"/>

If it's something else you want to do rather than load the properties, look into javaresource - many tasks are able to take a resource as input so you should be able to find a way to do what you want.

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