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));
This is how you load a properties file in Java
Properties prop = new Properties();
prop.load(new FileInputStream(filePath));