Article
home/blog/Loading

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));