inieditor-java
inieditor-java copied to clipboard
Java library to read and edit INI-style configuration files
i suggest: IniEditer.java public void load(BufferedReader reader) throws IOException { while (reader.ready()) { reader.mark(NAME_MAXLENGTH); String line = reader.readLine().trim(); to public void load(BufferedReader reader) throws IOException { while (reader.ready()) { reader.mark(NAME_MAXLENGTH);...
Converted iterated loops to for loops and added getIniMap() method
Add the ability to add a comment to the beginning of the file.