C# 代码中运行VC6.0并执行程序问题(在cmd下也行)
本人做个系统需要在C#代码中编译执行一个.cpp或者.c文件。不知道怎么实现,大家帮个忙~现在会编译执行程序了,就是当执行的程序时有数据输入时不知道怎么操作呢,希望牛人给...
本人做个系统需要在C#代码中编译执行一个.cpp或者.c文件。不知道怎么实现,大家帮个忙~
现在会编译执行程序了,就是当执行的程序时有数据输入时不知道怎么操作呢,希望牛人给个提示~谢了~ 展开
现在会编译执行程序了,就是当执行的程序时有数据输入时不知道怎么操作呢,希望牛人给个提示~谢了~ 展开
展开全部
StringBuilder sb = new StringBuilder();
sb.Append(@"这里写你要在命令提示符里运行的命令 ");
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine(sb.ToString());
p.Close();
sb.Append(@"这里写你要在命令提示符里运行的命令 ");
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine(sb.ToString());
p.Close();
追问
这个能明白,源文件能执行。我想问的是当源文件被执行时,需要输入数据的时候从另个文件中读数据并继续执行。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询