views:

29

answers:

1

How does one capture the standard output/error of a process started by a Process.start() to a string?

+1  A: 

By redirecting it and reading the stream.

Darin Dimitrov