Preserve Newlines
Brought to you by:
szkiba
When parsing and writing back afterwards, the files should be identically.
Ini ini = new Ini();
ini.load(new File("settings_in.ini"));
ini.store(new File("settings_out.ini"));
the files "settings_in.ini" and "settings_out.ini" should be identically - all comments and newlines.
I want to use ini4j in one of my applications, where the user can edit the ini-file manually but the application may change or add some settings too.