|
From: Davide S. <ds...@cd...> - 2013-06-12 09:52:59
|
Hi, I would like to extract programmatically all the properties from a configuration file. The WrapperProperties class extends Java Properties, but if I load the properties using the following code: Properties prop = new Properties(); prop.load(new FileInputStream(confFilePath)); Then it doesn't take into account the include statements, the '\' are not escaped ... Given a configuration file, what is the easiest way to load all the properties, including the ones in the included conf files? Thanks, David |