1.類的加載過程----瞭解code
2.類的加載器的做用ssl
3.類的加載器的分類get
4.Java類編譯、運行的執行的流程io
5.使用Classloader加載src目錄下的配置文件編譯
@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); }