将属性文件条目添加到java中清单文件的类路径条目中
我的项目的资源文件夹中有一个属性文件。我通过排除此属性文件创建了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将该文件放在一个文件夹中并从清单中引用它。
所以,我有 my.jar 的清单条目:
然后我在 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:
Then I have a folder "prop" near the my.jar and .properties file in in.
Seems it works.