
java
January 10, 2019
Load a properties file in Java
This is how you load a properties file in Java
Example loading
Properties prop = new Properties();
prop.load(new FileInputStream(filePath));
Thanks for reading!

This is how you load a properties file in Java
Properties prop = new Properties();
prop.load(new FileInputStream(filePath));
Thanks for reading!