inieditor-java icon indicating copy to clipboard operation
inieditor-java copied to clipboard

Java library to read and edit INI-style configuration files

Results 3 inieditor-java issues
Sort by recently updated
recently updated
newest added

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.