Redirecting output information for Windows console programs in C #

Source: Internet
Author: User

This question comes from the forum question, the answer is as follows. This is just a simple ipconfig command. If it is complicated, such as Oracle's EXP and so on, it can be displayed at the time of the call, which is pretty cool.

Using System;
Using System.Windows.Forms;

Namespace WindowsApplication8
... {
public partial class Form1:form
... {
Public Form1 ()
... {
InitializeComponent ();
}

delegate void Dreadline (string strLine);
private void Excutecommand (String strfile, String args, Dreadline onreadline)
... {
System.Diagnostics.Process p = new System.Diagnostics.Process ();
P.startinfo = new System.Diagnostics.ProcessStartInfo ();
p.StartInfo.FileName = strfile;
p.startinfo.arguments = args;
P.startinfo.windowstyle = System.Diagnostics.ProcessWindowStyle.Hidden;
P.startinfo.redirectstandardoutput = true;
P.startinfo.useshellexecute = false;
P.startinfo.createnowindow = true;
P.start ();
System.IO.StreamReader reader = p.standardoutput;//intercept output stream
String line = reader. ReadLine ()//read one row at a time
while (!reader. Endofstream)
... {
Onreadline (line);
line = reader. ReadLine ();
}
p.WaitForExit ();
}

private void Button1_Click (object sender, EventArgs e)
... {
Excutecommand ("ipconfig", "" ", New Dreadline (Printmessage));
}
private void Printmessage (string strLine)
... {
This.textBox1.Text + + StrLine + "";
}
}
}

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.