How do you invoke a groovy method that prints to stdout, appending the output to a string?
|
|
|
|
|
|
|
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!
|
||
|
|
|
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". |
||
|
|
