码迷,mamicode.com
首页 > 编程语言 > 详细

c#执行bat批处理文件,并通过线程将结果显示在控件中

时间:2016-08-23 20:17:19      阅读:437      评论:0      收藏:0      [点我收藏+]

标签:

核心代码如下:

   

Process p = new Process();
p.StartInfo.FileName = filePath;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
string txt = p.StandardOutput.ReadToEnd();
this.textBox1.Invoke(new EventHandler(delegate
{
this.textBox1.Text +="\r\n"+ txt;
}));
p.WaitForExit();
p.Close();
p.Dispose();

this.textBox1.Invoke(new EventHandler(delegate
{
this.textBox1.Text += "\r\n\r\n文件(" + filePath + ")执行结束";
}));

 

 

因为批处理文件时在线程里处理的,所以处理控件的时候需要invoke执行

c#执行bat批处理文件,并通过线程将结果显示在控件中

标签:

原文地址:http://www.cnblogs.com/oracleblogs/p/5800573.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!