Hi All,
Am trying to load multiple properties file in to one property object.
I have two properties file located at different place
(tokenize.properties and project.properties) and I am not sure how to
load those two properties into one single property object. Here's what
I mean.
// Load a single property file
ClassLoader cl = this.getClass().getClassLoader();
InputStream is = cl.getResourceAsStream( "/tokenize.properties" );
inputProperties = new Properties();
try {
inputProperties.load(is);
}
catch ( IOException ex ){ ex.printStackTrace(); }
If I create another property object then each property file will load
to each property object, this is so inconvenience. Thanks
--
Thanh T.ICQ #: 10381946
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]