Skip to content

Instantly share code, notes, and snippets.

@ntung
Forked from js1972/write_file.groovy
Created January 27, 2017 11:04
Show Gist options
  • Save ntung/a1cdde8b8ba1ed6748c03688aa4916ed to your computer and use it in GitHub Desktop.
Save ntung/a1cdde8b8ba1ed6748c03688aa4916ed to your computer and use it in GitHub Desktop.
How to write content to a new file (overwrite if already existing) in Groovy.
//
// Write the mock request payload to a file for checking later...
// newWrite() is the important it to ensure you get a *new* file each time.
//
def filename = "C:\\MyScratchFolder\\soapUI projects\\Testing\\procon\\mock_po_activity_request.xml"
def file = new File(filename)
def w = file.newWriter()
w << mockRequest.requestContent
w.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment