SoapUI/Groovy: 扩展 txt 文件,不重写它

SoapUI/Groovy: expand txt file, NOT re-write it

将响应 sheet 保存到文件没有问题。好像

def xmlFile = "C:/.../Try.xml"
def response = context.expand( '${Request#Response}' )
def f = new File(xmlFile)
f.write(response, "UTF-8")

但是。

我用新参数(使用 while)在 groovy 脚本中重新 运行 我的请求,我需要将信息添加到结果文件,而不是重写它。现在只是每次重写:(。文件在循环外创建。

提前致谢, 德米特里

直接来自 ref-doc

new File('TestFile1.txt').withWriterAppend( 'UTF-8' ){ w->
  w << 'abcdefghij'
}