Java org.apache.commons.configuration INIConfiguration fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.configuration INIConfiguration fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.configuration INIConfiguration.

The text is from its open source code.

Constructor

INIConfiguration(String filename)
Create and load the ini configuration from the given file.
INIConfiguration(File file)
Create and load the ini configuration from the given file.
INIConfiguration(URL url)
Create and load the ini configuration from the given url.
INIConfiguration()
Create a new empty INI Configuration.

Method

voidaddProperty(String key, Object value)
Adds a new property to this configuration.
SetgetSections()
Return a set containing the sections in this ini configuration.
voidload(Reader reader)
Load the configuration from the given reader.
voidsave(Writer writer)
Save the configuration to the specified writer.
voidsetProperty(String key, Object value)
Sets a new value for the specified property.