Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The ideal way to populate a java.util.Properties object seems to be by using some variation on

properties.load(ClassLoader.getSystemClassLoader().getResourcesAsStream(String className));

The big idea being to point Properties.load at a InputStream of a class, rather than at a path.

How can this be done using org.apache.commons.configuration.Configuration?

share|improve this question

1 Answer

up vote 3 down vote accepted

The constructors of the different containers (e.g. org.apache.commons.configuration.PropertiesConfiguration and org.apache.commons.configuration.XMLPropertiesConfiguration) internally take care of this if you pass them a String. They internally use the API in org.apache.commons.configuration.ConfigurationUtils to try and find the resource in the user home directory, the current classpath and the system classpath.

Incidentally, you might find this article useful when trying to figure out the "correct" class loader to use when loading properties files from the classpath.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.