如何提供属性文件的绝对路径。
autoamtion_environment_properties = new Properties();
InputStream iStream = Thread.currentThread().getContextClassLoader().getResourceAsStream(("C:\\automation_environment.properties"));
这是给一个null pointer exception
.
如果我在项目根文件夹中有这个文件,它可以工作,但我需要从外部访问它。知道需要做什么吗?
谢谢。