I am trying to load properties file. Here is my structure
Now i am trying to lo
You're passing a file path to getResourceAsStream(String name), but name here is a class path, not a file path...
getResourceAsStream(String name)
name
You could make sure the file is on your classpath, or use a FileInputStream instead.
FileInputStream