Example #1
0
 private static Properties loadProperties(Class clazz, String resourcePath) throws IOException {
   InputStream is = clazz.getResourceAsStream(resourcePath);
   Properties prop = new Properties();
   prop.load(is);
   is.close();
   return prop;
 }