im trying to read in a properties file, this werks like this:
Properties pr = new Properties();
File fname = new File("/tmp/deprop.properties");
FileInputStream input_stream = new FileInputStream(fname);
pr.load(input_stream);
String Name = pr.getProperty("Name");
now i wanna built a loop to readin all existing record and automatically built the strings out of it , like
properties file: name = eric jsp-page: string name = pr.getprop("name"), etc some1 could help me plz?
what i need to know,2 how do i write a properties file, is it the same way then reading it? thx
eric
[This message has been edited by eric clark (edited January 19, 2001).]