Skip to Content
0
Former Member
Oct 20, 2006 at 07:19 PM

Cannot read Property file from JSP in a Web Module Project

40 Views

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.

<b>1st Method :</b>

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()) ;

}

<b>2nd Method :</b>

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.