public class PropertiesUtil { public static String get(String filePath, String key) { String val = null; Properties prop = new Properties(); InputStream in = null; in = PropertiesUtil.class.getClassLoader().getResourceAsStream(filePath); try { prop.l