Main Page

From ConfigLoader

Jump to: navigation, search

ConfigLoader

Java classes for xml-based configurations reading.
Last available version: 1.5

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.

Personal tools