Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I was just wondering if it is possible to capture the output of a separate process running on windows?

For instance if i have a console app running, could i run a second app, a forms app, and have that app capture the output from the console app and display it in a text box?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
313 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can redirect the stdout / stderr (standary out put / error stream) of a process if you are the one starting it. For an example take a look at this.

Capturing the output stream of a process which was not started by you, well, that is whole different matter. I'm not sure it can be done.

But if you have control over the source code of both apps, there are other ways to communicate, like pipes / remoting / WCF, and so on...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...