Intellij - 如何将文本文件添加到资源中

发布于 2024-12-06 16:45:20 字数 167 浏览 0 评论 0原文

我正在使用 properties.load 和文件名读取 *.properties 文件。

我想将属性文件添加到 jar 或类路径中。

  1. 如何将文件添加到 jar 中?
  2. 我如何从罐子里读取内容?

I am reading a *.properties file using properties.load and a file name.

I want to add the properties file to the jar or to the classpath.

  1. How do add a file to the jar?
  2. How do I read from the jar?

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

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

发布评论

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

评论(1

最美的太阳 2024-12-13 16:45:20

将文件放在源文件夹中,它将被复制到输出并根据 Settings | 与类一起添加到 jar 中。 编译器 | 资源模式

要在您的应用程序中加载文件,请使用以下命令:

Properties props = new Properties();
InputStream is = this.getClass().getResourceAsStream("/file.properties");
props.load(is);

Place the file in the source folder, it will be copied to the output and added to the jar together with the classes according to Settings | Compiler | Resource Patterns.

To load the file in your app use something like:

Properties props = new Properties();
InputStream is = this.getClass().getResourceAsStream("/file.properties");
props.load(is);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文