
how to read properties file in jsp of struts2

Hi,
You can use the Properties class of Java in your action class.
Properties pro = new Properties();
FileInputStream in = new FileInputStream(f);
pro.load(in);
String p = pro.getProperty("key");
System.out.println(key + " : " + p);
Read complete example at Read the Key-Value of Property File in Java.
Thanks

i want the properties file values in jsp not in action class brother