I am getting below exception while running an application. This application read abc.properties file,
Exception in thread \"main\" java.util.MissingResourceExcept
You just need to add the package name while getting the file
For example if your properties name is "ABC.properties" in package a.b.c then the below code will work perfectly
ResourceBundle labels = ResourceBundle.getBundle("a.b.c.ABC");