I really don't know what else to do. I normally put my properties files in my source folder (I use Netbeans, by the way) and when I read it, everything works fine.
Today, I created a new properties file in the source folder and tried to read it and I kept getting a null pointer exception, connoting the nonexistence of the file in the source folder. Yet, there was another properties file in said source folder and I was able to read that one fine. I deleted both properties files and started afresh, but this time I can't seem to read anything.
My codes are fine:
Properties pp = new Properties();
pp.load(getClass().getResourceAsStream("/errors.properties"));
Then I did the clean and build for my project, and now one of the classes can read the errors.properties file (same code, nothing changed), but I'm also now getting a java.lang.NoClassDefFoundError for my second class when I try running it.
WTH!?
build/classesortarget, wherever your .class files are located? – Brian Sep 5 '12 at 14:41