1

我有一个 xyz.properties 文件,它可以放在类路径中的任何位置,并且预计 java 代码会加载该属性文件 -

我知道 Class.getResource(String resource) 和 ClassLoader.getResource(String resource) 需要资源的相对和绝对路径。

如何在类路径中递归搜索此文件?- 有图书馆吗?

4

1 回答 1

0

getResourceAsStream 在类路径中搜索文件

    Properties prop = new Properties();
   InputStream stream = this.getClass().getClassLoader().getResourceAsStream("yourProp.properties");
    prop.load(stream);
于 2013-07-14T01:41:14.277 回答