我的项目中有多个Maven
依赖项,其中一个存在包含字符串资源的文件。如何在运行时访问此文件?
我真正想问的是这个文件的文件路径是什么。
结构可能如下所示:
External Libraries
|
dependency.jar
|
myfile.properties
答案 0 :(得分:0)
你应该通过:
InputStream is = this.getClass().getResourcesAsStream("/myfile.properties");