Skip to content

Instantly share code, notes, and snippets.

@fumokmm
Created May 17, 2010 20:01
Show Gist options
  • Save fumokmm/404165 to your computer and use it in GitHub Desktop.
Save fumokmm/404165 to your computer and use it in GitHub Desktop.
def prop = new Properties()
prop.setProperty 'ONE', '1'
prop.setProperty 'TWO', '2'
prop.setProperty 'THREE', '3'
new File('/temp.properties.xml').withOutputStream{ outStream ->
prop.storeToXML(outStream, 'Temporary Properties')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment