Load Properties Map with properties from a Text File

Load a java.

Javadoc available at https://www.javatapas.com/docs/javatapas/util/LoadPropertiesFromFile.html


public Properties loadPropertiesFromFile (String inFile) throws IOException {

	Properties props = new Properties();

	props.load(new FileReader(inFile));

	return props;
}