vote up 5 vote down star
2

I am writing a drop-in replacement for a legacy application in Java. One of the requirements is that the ini files that the older application used have to be read as-is into the new Java Application. The format of this ini files is the common windows style, with header sections and key=value pairs, using # as the character for commenting.

I tried using the Properties class from Java, but of course that won't work if there is name clashes between different headers.

So the question is, what would be the easiest way to read in this INI file and access the keys?

flag

4 Answers

vote up 1 vote down

Using the apache class "HierarchicalINIConfiguration" "http://commons.apache.org/configuration/apidocs/org/apache/commons/configuration/HierarchicalINIConfiguration.html". Its simple, and yet powerful.

HierarchicalINIConfiguration iniConfObj = new HierarchicalINIConfiguration(iniFile); 

// Get Section names in ini file        
Set setOfSections = iniConfObj.getSections();
Iterator sectionNames = setOfSections.iterator();

while(sectionNames.hasNext()){

    String sectionName = sectionNames.next().toString();

    SubnodeConfiguration sObj = iniObj.getSection(sectionName);
    Iterator it1 =   sObj.getKeys();

    while (it1.hasNext()) {
    // Get element
    Object key = it1.next();
    System.out.print("Key " + key.toString() +  " Value " +  
                     sObj.getString(key.toString()) + "\n");
  }

Dependency: commons-collections-3.2.1 Jar

Arun ~ arunky

link|flag
vote up -1 vote down

Or with standard Java API you can use java.util.Properties

new Properties() props = rowProperties.load(new FileInputStream(path));
link|flag
Problem is that, with ini files, the structure has headers. The Property class does not know how to handle the headers, and there could be name clashes – Mario Ortegón Oct 13 '08 at 12:05
vote up 2 vote down

Another option is Apache Commons Config also has a class for loading from INI files. It does have some runtime dependencies, but for INI files it should only require Commons collections, lang, and logging.

I've used Commons Config on projects with their properties and XML configurations. It is very easy to use and supports some pretty powerful features.

link|flag
vote up 13 vote down check

The library I've used is ini4j. It is lightweight and parses the ini files with ease. Also it uses no esoteric dependencies to 10,000 other jar files, as one of the design goals was to use only the standard Java API

This is an example on how the library is used:

Preferences prefs = new IniFile(new File(filename));
System.out.println("grumpy/homePage: " + prefs.node("grumpy").get("homePage", null));
link|flag
1  
Link: ini4j.sourceforge.net – alastairs May 20 at 9:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.