Intellij - 如何将文本文件添加到资源中
我正在使用 properties.load
和文件名读取 *.properties
文件。
我想将属性文件添加到 jar 或类路径中。
- 如何将文件添加到 jar 中?
- 我如何从罐子里读取内容?
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.
- How do add a file to the jar?
- How do I read from the jar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将文件放在源文件夹中,它将被复制到输出并根据
Settings
| 与类一起添加到 jar 中。编译器
|资源模式
。要在您的应用程序中加载文件,请使用以下命令:
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: