Hi,
I have a problem in loading the resource file with the method ResourceBundle.getBundle if i am putting the property file outside the src folder.
What i am thinking that it is not a good idea to keep the property file with
java source file or with class files in jar file. so actually i want to give the path of the property file through system property via command line when need to run the code.
but as i am trying it is not accepting the path for the file specified like C:/MessagingBundleAmazon
It is giving
Exception in
thread "main" java.util.MissingResourceException: Can't find bundle for base name C:/MessagingBundleAmazon, locale en_US
Please help me how we can specify the path name in the base name for the argument.
Thank you