编程语言
首页 > 编程语言> > java Properties读取配置文件时的相对路径

java Properties读取配置文件时的相对路径

作者:互联网

FileInputStream作为输入流时的相对路径

在这里插入图片描述
此时的文件默认在当前的module下

Properties pros = new Properties();
//FileInputStream fis = new FileInputStream("jdbc.properties");
FileInputStream fis = new FileInputStream("src\\jdbc1.properties");

pros.load(fis);

ClassLoader作为输入流时的相对路径

在这里插入图片描述
此时的文件默认在当前的module的src下

Properties pros = new Properties();
InputStream is = ClassLoaderTest.class.getClassLoader().getResourceAsStream("jdbc1.properties");

pros.load(is);

标签:fis,java,配置文件,pros,相对路径,new,FileInputStream,Properties
来源: https://blog.csdn.net/qq_37348714/article/details/112388987