C#winform调用外部自己写的一个控制台程序,每次都是一闪而过,根本不执行代码。控制台args[0]是传入参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#winform调用外部自己写的一个控制台程序,每次都是一闪而过,根本不执行代码。控制台args[0]是传入参数相关的知识,希望对你有一定的参考价值。
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;
不是这回事。程序本身有console.read();而且程序是进行数据插入到mysql的,需要十几个小时甚至更多,可是结果是一闪而过。
参考技术B 控制台运行完任务就会自动退出 ,所以你要保留控制台必须要用语句停留,例如console.read(); 参考技术C 在控制台程序main()函数后大括号前面添加一句话:Console.ReadKey();表示程序运行到此处会停下来,在接受任意输入后继续运行。 参考技术D 参考答案 67、你死了,我的故事就结束了,而我死了,你的故事还长得很。本回答被提问者采纳Delphi程序怎么调用C#写的dll类库
参考技术A 首先在vs2005中创建一个“类库”项目TestDll,using System.Runtime.InteropServices;
namespace TestDll
public interface I TestClass
void YourProcedure(stirng param1);
[ClassInterface(ClassInterfaceType.None)]
public class TestClass:I TestClass
public void YourProcedure (stirng param1);
//自己的代码
参考技术B 1、关键是Delphi定义的读取数据的类型,在磁盘上要与C++定义的类型一致才可以了。
2、函数函数名称匹配准确。 参考技术C 和其他语言都一样,不过数据类型怕出问题你注意点,建议你参考C#DLLAPI
以上是关于C#winform调用外部自己写的一个控制台程序,每次都是一闪而过,根本不执行代码。控制台args[0]是传入参数的主要内容,如果未能解决你的问题,请参考以下文章
winform process.start() 调用外部EXE引用程序, 如何实现用户登录