Redirect the output in the console Program

Source: Internet
Author: User
I just read a friend on the Internet about the redirection console output Article It was mainly implemented using the setout () method. I suddenly remembered a project created in February. At that time, there was a need to implement the redirection output of the console, the first reaction is to use pipestream similar to that in Java. Unfortunately, it seems that pipestream is not in C. No way, I can only chew on msdn. At that time, the first method was used by xupc friends. Since the time relationship is not carefully investigated, only another method is available. Use a method to steal a host for reference only Process = New Process ();
Process. startinfo. useshellexecute =   False ;
Process. startinfo. redirectstandardoutput =   True ;
Process. startinfo. filename = " F:/netprojects/leleapplication4/bin/debug/consoleapplication4.exe " ;
Process. Start ();
Streamreader SR = Ocess. standardoutput;
String Strinfo;
While (Strinfo = Sr. Readline ()) ! =   Null ) {
This. Richtextbox1.appendtext (strinfo );
This. Richtextbox1.refresh ();

}

The thread processes thisCode....

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.