Here you can find the source of loadProperties(String propertiesFile)
public static Properties loadProperties(String propertiesFile) throws IOException
//package com.java2s; //License from project: Apache License import java.io.*; import java.util.Properties; public class Main { public static Properties loadProperties(String propertiesFile) throws IOException { Properties props = new Properties(); InputStream in = new FileInputStream(propertiesFile); props.load(in);/*w w w .java 2s .com*/ in.close(); return props; } }