加载捆绑在 .jar 中的文件吗?

发布于 2024-09-11 19:09:29 字数 187 浏览 10 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

乙白 2024-09-18 19:09:30

class 上使用 getResourceAsStream 方法:

Properties p = new Properties();
p.load(MyClass.class.getResourceAsStream("/myprops.properties"));

Use the getResourceAsStream method on class:

Properties p = new Properties();
p.load(MyClass.class.getResourceAsStream("/myprops.properties"));
情独悲 2024-09-18 19:09:30

您可以使用 ClassLoader getResourceAsStream() 方法。

You can load those by using the ClassLoader getResourceAsStream() method.

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