java 面向对象(三十九):反射(三)了解ClassLoader
2021-05-04 01:29
标签:java类 input mamicode image 识别 property 文件 cep 过程 1.类的加载过程----了解 2.类的加载器的作用 3.类的加载器的分类 4.Java类编译、运行的执行的流程 5.使用Classloader加载src目录下的配置文件 java 面向对象(三十九):反射(三)了解ClassLoader 标签:java类 input mamicode image 识别 property 文件 cep 过程 原文地址:https://www.cnblogs.com/qiu-hua/p/13196496.html@Test
public void test2() throws Exception {
Properties pros = new Properties();
//此时的文件默认在当前的module下。
//读取配置文件的方式一:
// FileInputStream fis = new FileInputStream("jdbc.properties");
// FileInputStream fis = new FileInputStream("src\\jdbc1.properties");
// pros.load(fis);
//读取配置文件的方式二:使用ClassLoader
//配置文件默认识别为:当前module的src下
ClassLoader classLoader = ClassLoaderTest.class.getClassLoader();
InputStream is = classLoader.getResourceAsStream("jdbc1.properties");
pros.load(is);
String user = pros.getProperty("user");
String password = pros.getProperty("password");
System.out.println("user = " + user + ",password = " + password);
}
上一篇:融入python-1
文章标题:java 面向对象(三十九):反射(三)了解ClassLoader
文章链接:http://soscw.com/essay/82057.html