I use this code in my program to load a properties file:
Properties properties = new Properties();
URL url = new App().getClass().getResource(PROPERTIES_FILE);
properties.load(url.openStream());
The code runs fine in Eclipse. Then I package the program into a JAR named MyProgram.jar, and run it, I got a NullPointerException at the second line. The JAR doesn't contain the properties file, they both are in the same directory. I am using Maven to create the JAR. How can I fix this problem?
UPDATE: I don't want to add the properties file to the JAR, since it will be created at deployment time.
getResource()instead ofgetResourceAsStream(), since you're just using it as a stream anyway? – Powerlord Nov 8 '10 at 16:55maventag? You commented on my answer "Do you know how to add it via maven?". So you're using maven and since it's doing things differently, the final answer depends on that. I don't know how, so I deleted the answer and retagged the question for better attendance. Maven guys are the only who can reliably answer this question. – BalusC Nov 8 '10 at 17:29