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.

link|improve this question

feedback

4 Answers

up vote 27 down vote accepted

When loading the Properties from a Class in the package com.al.common.email.templates you can use

Properties prop = new Properties();
InputStream in = getClass().getResourceAsStream("foo.properties");
prop.load(in);
in.close()

(Add all the necessary exception handling).

If your class is not in that package, you need to aquire the InputStream slightly differently:

InputStream in = getClass().getResourceAsStream("/com/al/common/email/templates/foo.properties");

Relative paths (those without a leading '/') in getResource()/getResourceAsStream() mean that the resource will be searched relative to the directory which represents the package the class is in.

Using java.lang.String.class.getResource("foo.txt") would search for the (inexistent) file /java/lang/String/foo.txt on the classpath.

Using an absolute path (one that starts with '/') means that the current package is ignored.

link|improve this answer
i guess the second snippet is the answer to the question.. – Satya Dec 2 '08 at 8:58
Suggestion: Add an explanation when to use relative and when to use absolute paths (with and without the "/" at the beginning). – Aaron Digulla Dec 2 '08 at 9:06
I tried to give some explanation. – Joachim Sauer Dec 2 '08 at 9:13
what if your properties file is outside the src directory but still inside your project director? – jonney May 16 at 14:24
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:

static {
    Properties prop = new Properties();
    InputStream in = CurrentClassName.class.getResourceAsStream("foo.properties");
    prop.load(in);
    in.close()
}

(Exception handling elided, as before.)

link|improve this answer
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

link|improve this answer
feedback
public class Test{  
  static {
    loadProperties();
}
   static Properties prop;
   private static void loadProperties() {
    prop = new Properties();
    InputStream in = Test.class
            .getResourceAsStream("test.properties");
    try {
        prop.load(in);
        in.close();
    } catch (IOException e) {
        e.printStackTrace();
    }

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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