如何爲屬性文件提供絕對路徑。在java中讀取屬性文件
autoamtion_environment_properties = new Properties();
InputStream iStream = Thread.currentThread().getContextClassLoader().getResourceAsStream(("C:\\automation_environment.properties"));
這是給出null pointer exception
。
如果我在項目根文件夾中有這個文件,它可以工作,但我需要從外部訪問它。任何想法需要做什麼?
謝謝。