1. 读取绝对路径
InputStream re = new FileInputStream("D:/re.properties");
2. 读取相对路径
2.1 相对于工程
- 在工程目录下,读取文件是相对于工程目录
FileInputStream re = new FileInputStream("src/re.properties");
- 在工程下的 模块(Module) 时,需要家上 模块名
InputStream re = new FileInputStream("Chapter23_reflection/src/re.properties");