How do I save properties settings with the Properties class?
Created Dec 30, 2001
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.