I have a jar called App.jar and it's structure is as follows

App.jar
    |
    |
    |---xyzfolder
    |       |
    |       |--config
    |            |
    |            |--config.properties 
    |  
    | 
    |---com (contains classes)
          |
          |--MyClass.class

Now what I want is that I want to access config.properties file from MyClass.class

link|improve this question

20% accept rate
What have you tried to access the file? – Kevin Apr 26 '11 at 11:33
1  
I've tried getClassLoader().getResources("config.properties") which gives nullpointerexception error. – Ankit Apr 26 '11 at 11:35
Thats because you need to specify the path. Its not in the same package – Wes Apr 26 '11 at 11:41
feedback

1 Answer

up vote 0 down vote accepted

Have you tried the following?

 this.class.getClassLoader().getClassLoader().getResourceAsStream("classpath:/xyzfolder/config/config.properties");

see http://download.oracle.com/javase/1.5.0/docs/api/java/lang/ClassLoader.html#getSystemResourceAsStream%28java.lang.String%29

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.