本帖最后由 小黑子 于 2014-10-20 22:13 编辑
假设建立一个Java工程exam,有如下目录关系:exam
|----bin
|----com
|----heima
|----config.properties
|----resource
现在要读取一个配置文件config.properties,可采用如下方式:
String path = "com/itheima/config.properties";
InputStream is = 类名.class.getClassLoader().getResourceAsStream(path);
因为这里的getResourceAsStream默认是从bin目录开始查找,所以将config.properties放在bin目录下的某个目录才能找到。
但是,如果我把config.properties文件放在resource目录下,可不可以通过某种方式获取呢???
|
|