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

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

java Properties读取配置文件时的相对路径
此时的文件默认在当前的module下

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

pros.load(fis);

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

java Properties读取配置文件时的相对路径
此时的文件默认在当前的module的src下

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

pros.load(is);
上一篇:JDBCUtils.java


下一篇:CentOS随笔 - 6.CentOS7安装Git服务器