首页 > 编程 > C# > 正文

C#怎样读取DOS命令的输出值

2023-05-18 12:33:12
字体:
来源:转载
供稿:网友

本例讲解了使用C#编程实现截取DOSming令返回值的实现方法。

tbResult.Text = "";

ProcessStartInfo start = new ProcessStartInfo("Ping.exe"); //设置运行的ming令行文件问ping.exe文件,这个文件系统会自己找到

//如果是其它exe文件,则有可能需要指定详细路径,如运行winRar.exe

start.Arguments = txtCommand.Text; //设置ming令参数

start.CreateNoWindow = true; //不显示dosming令行窗口

start.RedirectStandardOutput = true; //

start.RedirectStandardInput = true; //

start.UseShellExecute = false; //是否指定操作系统外壳进程启动程序

Process p=Process.Start(start);

StreamReader reader = p.StandardOutput; //截取输出流

string line = reader.ReadLine(); //每次读取一行

while (!reader.EndOfStream)

{

    tbResult.AppendText(line+" ");

    line = reader.ReadLine();

}

p.WaitForExit(); //等待程序执行完退出进程

p.Close(); //关闭进程

reader.Close(); //关闭流

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表