加载捆绑在 .jar 中的文件吗?
我正在使用 ant
构建一个项目,在构建过程中,我想将许多属性/配置文件直接捆绑到 .jar
中,以使分发更简单。我已成功将这些文件添加到 .jar
中,但无法将它们加载到我的程序中。
打开/读取捆绑到 .jar
文件中的文件的过程是什么?
I'm building a project with ant
and during the build I'd like to bundle a number of property/config files directly into the .jar
to make distribution simpler. I've been successful in adding these files to the .jar
, but I'm unable to load them in my program.
What is the procedure to open/read a file that's been bundled into a .jar
file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
class
上使用getResourceAsStream
方法:Use the
getResourceAsStream
method onclass
:您可以使用
ClassLoader
getResourceAsStream() 方法。You can load those by using the
ClassLoader
getResourceAsStream() method.