将属性文件条目添加到java中清单文件的类路径条目中

发布于 2024-12-11 16:32:18 字数 112 浏览 0 评论 0原文

我的项目的资源文件夹中有一个属性文件。我通过排除此属性文件创建了一个 JAR 文件,以便对属性文件所做的任何更改都将反映在我的 JAR 文件中。现在我想将此属性文件路径包含在清单文件的类路径条目中。我该怎么做?

I have a properties file in the resources folder in my project. I have created a JAR file by excluding this properties file, so that any changes made to the properties file will reflect in my JAR file. Now I want to include this properties file path in the class path entry of my manifest file. How can I do this?

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

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

发布评论

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

评论(1

乖乖哒 2024-12-18 16:32:18

您应该将该文件放在一个文件夹中并从清单中引用它。
所以,我有 my.jar 的清单条目:

Class-Path: prop/

然后我在 my.jar 和 .properties 文件附近有一个文件夹“prop”。
看来有效。

You should put the file in a folder and refer it from the manifest.
So, I have the manifest entry of my.jar:

Class-Path: prop/

Then I have a folder "prop" near the my.jar and .properties file in in.
Seems it works.

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