Hi Greg,

You can use the CLASSPATH to load properties files ... 

Properties p = new Properties();
java.io.InputStream is;

is = getClass().getResourceAsStream("rnb.properties");
if (is == null)
    throw new Exception("Properties file not found");
p.load(is);

This works fine !

greetz, christoph

-----Original Message-----
From: Greg Schueler [mailto:[EMAIL PROTECTED]]
Sent: dinsdag 23 januari 2001 21:18
To: [EMAIL PROTECTED]
Subject: RE: properties files and tomcat


You should do this:

Properties myprops = new Properties();
myprops.load(new FileInputStream(new File("my.properties")));

if this doesn't seem to work, make sure that my.properites is in the right
place, and/or qualify the new File() call.

e.g.
....new File("d:\tomcat\webapps\myapp\my.properties");

The CLASSPATH is only for loading class files, and will not help you find
the properties file.

-----Original Message-----
From: Christoph Rooms [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 23, 2001 11:24 AM
To: [EMAIL PROTECTED]
Subject: properties files and tomcat


Hi,

I want to read a properties file like this :

Properties.class.getResourceAsStream("my.properties");

This function should find the properties files when it's in the CLASSPATH.

I have putted the properties file in the WEB-APPS dir ...

anyone ?

thanks ...Christoph

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to