本文主要是介绍c# 执行cmd命令跳过press any key to continue,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一 、场景
在C#程序中需要调用一个exe程序(控制台应用程序),该exe程序执行到最后出现 “press any key to continue”,需按键结束。要求在C#程序中实现模拟输入,结束调用的exe程序。
二、代码实现
- exe程序代码:
#include "stdafx.h" using namespace std;int _tmain(int argc, _TCHAR* argv[]) {int i=3;while(i){printf("本进程执行位置%d!\n",i);Sleep(1000);i--;} system("Pause"); return 0; }
- C#程序代码:
public static void RunCmd(string cmd) {Process MyProcess = new Process();MyProcess.StartInfo.FileName = "cmd.exe";//获取或设置要传递给 Process 的 Start 方法的属性。MyProcess.StartInfo.UseShellExecute = false;//是否使用操作系统shell启动MyProcess.StartInfo.RedirectStandardInput = true;//接受来自调用程序的输入信息MyProcess.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息MyProcess.StartInfo.RedirectStandardError = true;//重定向标准错误输出MyProcess.StartInfo.CreateNoWindow = true;//不显示程序窗口//设置参数MyProcess.StartInfo.Arguments = "/c " + cmd; // /c是执行完命令后关闭命令窗口 MyProcess.Start(); //若在此处获取输出信息,进程会因为需要按键而阻塞//string output = MyProcess.StandardOutput.ReadToEnd();while (!MyProcess.HasExited){MyProcess.StandardInput.WriteLine();//输入一个字符,以结束进程}//输入字符后获取输出信息string output = MyProcess.StandardOutput.ReadToEnd();Console.WriteLine(output);MyProcess.WaitForExit(); MyProcess.Close(); }static void Main(string[] args) {string cmd = @"***\pauseTest.exe";RunCmd(cmd);Console.WriteLine("end"); }
-
输出(运行程序的时候打断点才能看到):
三、错误代码示例:
- 代码 (无法模拟按键跳过pause):
public static void RunCmd_Wrong(string cmd) {Process p = new Process();p.StartInfo.FileName = "cmd.exe";p.StartInfo.UseShellExecute = false; //是否使用操作系统shell启动p.StartInfo.RedirectStandardInput = true;//接受来自调用程序的输入信息p.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息p.StartInfo.RedirectStandardError = true;//重定向标准错误输出p.StartInfo.CreateNoWindow = true;//不显示程序窗口p.Start();//启动程序 p.StandardInput.WriteLine(cmd); //cmd 命令并不是作为cmd.exe进程的参数输入的而是代码写入的。p.StandardInput.AutoFlush = true;p.StandardInput.WriteLine("exit");while (!p.HasExited) //当执行到 pause 时,此处会阻塞,并不会继续往下执行了{p.StandardInput.WriteLine();//输入一个字符,以结束进程 }//获取cmd窗口的输出信息string output = p.StandardOutput.ReadToEnd();Console.WriteLine(output);p.WaitForExit();p.Close(); }
-
区别:
-
正确方法将cmd命令作为进程的参数,然后启动进程:
MyProcess.StartInfo.Arguments = "/c " + cmd;
- 错误方法是先启动进程,然后将cmd命令写入:
p.Start();//启动程序
p.StandardInput.WriteLine(cmd);
3. 没有 Pause 情况下对比输出
- RunCmd():
- RunCmd_Wrong():
这篇关于c# 执行cmd命令跳过press any key to continue的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!