背景:使用C# 调用控制台应用程序及传参;
C#端调用代码:
//初始化 System.Diagnostics.Process 类的实例
Process pro = new Process();
//获取控制台应用程序路径 (可以直接写死)
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.Load("Server.config");
XmlNodeList xmlNodeList = xmlDocument.GetElementsByTagName("Excel");
pro.StartInfo.FileName = xmlNodeList[0].SelectSingleNode("ExcelHandlerProgram").InnerText;
pro.StartInfo.UseShellExecute = false;
pro.StartInfo.CreateNoWindow = false; //是/否 不显示窗口
pro.StartInfo.RedirectStandardOutput = true;
//传递参数 使用“ ”隔开
pro.StartInfo.Arguments = "ExcelMerge" + " " + destinationFilePath + " " + sourceFileName + " " + dataStartLine + " " + email;
pro.Start();//开始执行
pro.WaitForExit();//等待控制台程序执行完成
string message = pro.StandardOutput.ReadToEnd();//控制台程序执行完成才会有返回值
pro.Close();//关闭该进程
</