vote up 3 vote down star

How do you invoke a groovy method that prints to stdout, appending the output to a string?

flag

2 Answers

vote up 6 vote down check

This demonstrates how you can do this. Paste this into a Groovy script file and run it. You will see the first call functions as normal. The second call produces no results. Finally, the last step in the main prints the results of the second call that were redirected to a ByteArrayOutputStream.

Have fun!

void doSomething() {
  println "i did something"
}

println "normal call\n---------------"
doSomething()
println ""

def buf = new ByteArrayOutputStream()
def newOut = new PrintStream(buf)
def saveOut = System.out

println "redirected call\n---------------"
System.out = newOut
doSomething()
System.out = saveOut
println ""

println "results of call\n---------------"
println buf.toString()
link|flag
Worked like a charm! Thanks a lot. – Joel Sep 23 '08 at 16:20
vote up 0 vote down

I'm not sure what you mean by "appending the output to a string", but you can print to standard out using "print" or "println".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.