I need to read a properties files that's buried in my package structure. com.al.common.email.templates I've tried everything and I can't figure it out. In the end, my code will be running in a servlet container, but I don't want to depend on the container for anything. I write jUnit test cases and it needs to work in both. I can't figure it out. Please Help. Thank you.
|
feedback
|
|
When loading the Properties from a Class in the package
(Add all the necessary exception handling). If your class is not in that package, you need to aquire the InputStream slightly differently:
Relative paths (those without a leading '/') in Using Using an absolute path (one that starts with '/') means that the current package is ignored. | |||||||||
feedback
|
|
To add to Joachim Sauer's answer, if you ever need to do this in a static context, you can do something like the following:
(Exception handling elided, as before.) | ||||
|
feedback
|
|
Assuming your using the Properties class, via its load method, and I guess you are using the ClassLoader getResourceAsStream to get the input stream. How are you passing in the name, it seems it should be in this form: /com/al/common/email/templates/foo.properties | |||
|
feedback
|
| |||
|
feedback
|