Hi,
You can use MessageResources to read the properties file in Action class.
In execute method, you can give like this..
MessageResources msgResource = getResources(request);
This will read the message resource file specified in struts-config.xml
(<message-resources parameter="ApplicationResources"/>
Then you can use getMessage() method on MessageResources to fetch the messages.
Regards,
Suresh.