I have tried to read the properties file in two ways but am not able to read it because i cannot find the correct path of the properties file.
1st Method :
Properties props = new Properties();
InputStream is =
application.getResourceAsStream(
"test.properties");
if (is != null) {
props.load(is);
is.close();
Enumeration keysEnum = Props.propertyNames();
while (keysEnum.hasMoreElements()) {
out.println(keysEnum.nextElement()) ;
}
2nd Method :
Here "com.sap.package" is the package name and "test" is the Properties file name
ResourceBundlebundle = ResourceBundle.getBundle("com.sap.package.test");
for (Enumeration e = bundle.getKeys(); e.hasMoreElements();)
{
String key = (String) e.nextElement();
out.print((String) e.nextElement());
String s = bundle.getString(key);
request.getComponentSession().putValue(key, s);
}
I cannot read the properties file even when I keep in it the WEB-INF folder.