Quantcast
Viewing all articles
Browse latest Browse all 12

Loading A Property File From The Classpath

Loads a property file located anywhere in the classpath<code> private Properties getPropertiesFromClasspath(String propFileName) throws IOException { // loading xmlProfileGen.properties from the classpath Properties props = new Properties(); InputStream inputStream = this.getClass().getClassLoader() ...

Viewing all articles
Browse latest Browse all 12

Trending Articles