Main Page
From ConfigLoader
ConfigLoader
Java classes for xml-based configurations reading.
Last available version: 1.5
[edit]
Overall objectives
For xml based text configuration files like:
<myconfig>
<host>somehost.com</host>
<port>8088</port>
</myconfig>
reading should be simple, like:
ConfigLoader cf = new ConfigLoader();
cf.LoadFromFile("configuration.xml");
String host = cf.getTagValue("myconfig.host");
More usecases are available in Documentation.

