How can I save/load application settings that I would normally use .ini files or the Windows Registry?
Created May 4, 2012
John Zukowski You can use Java property files for storing settings for an application. Use the java.util.Properties class, which includes a load and store method.
You can also use a PropertyResourceBundle, but there is no way to automatically store these files built into the Java classes, only read them.