Hi,
If you have "MyResources.properties",
and the above file has
"KEY_WORD= xyz"
To retrieve the KEY_WORD in your
java file is:
//initiate the Resource Bundle, and get the properties file.
ResourceBundle myResources =
ResourceBundle.getBundle("MyResources");
//get the keyword
myResources.getString("KEY_WORD")