How do I save properties settings with the Properties class?
Created May 7, 2012
Kenneth Tennek Try this:
Properties prop = new Properties(); FileOutputStream output = new FileOutputStream("Test.properties"); prop.store(output,"my testproperties"); output.flush(); output.close();You'll need to catch an IOException.