I want to use the ClassLoader to load a properties file for the Properties class. I\'ve simplified the below code to remove error handling for the purposes of this discussio
By using getClass().getClassloader() you look for "theta.properties" from the root path directory. Just use getClass().getResourceAsStream() to get a resource relative to that class.