C#winform调用外部自己写的一个控制台程序,每次都是一闪而过,根本不执行代码。控制台args[0]是传入参数
System.Diagnostics.Processp=newSystem.Diagnostics.Process();p.StartInfo=newSystem.Dia...
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo = new System.Diagnostics.ProcessStartInfo();
p.StartInfo.FileName = "test.exe";
p.StartInfo.WorkingDirectory = Application.StartupPath;
p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = false;
p.StartInfo.Arguments =x;//传入一个目录参数X
p.Start();
while (!p.HasExited) ;//等待结束
textBox4.Text += "\r\n" + x;
button8.Enabled = true;
button9.Enabled = true;
button13.Enabled = true; 展开
p.StartInfo = new System.Diagnostics.ProcessStartInfo();
p.StartInfo.FileName = "test.exe";
p.StartInfo.WorkingDirectory = Application.StartupPath;
p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = false;
p.StartInfo.Arguments =x;//传入一个目录参数X
p.Start();
while (!p.HasExited) ;//等待结束
textBox4.Text += "\r\n" + x;
button8.Enabled = true;
button9.Enabled = true;
button13.Enabled = true; 展开
4个回答
展开全部
控制台窗口运行完毕后会自动关闭!在运行完毕的最后给它一个等待输入的console.read();就行了!可以防止运行完直接关闭数据无法获取!
追问
不是这回事。程序本身有console.read();而且程序是进行数据插入到mysql的,需要十几个小时甚至更多,可是结果是一闪而过。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
控制台运行完任务就会自动退出 ,所以你要保留控制台必须要用语句停留,例如console.read();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在控制台程序main()函数后大括号前面添加一句话:Console.ReadKey();表示程序运行到此处会停下来,在接受任意输入后继续运行。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
参考答案 67、你死了,我的故事就结束了,而我死了,你的故事还长得很。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询