欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-05-10 09:11:06
...

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);
相关标签: Java学习 java