C#传参调用应用程序

调用外部程序netdraw启动文件vnademo.txt,该如何写?
NetDraw路径:@Application.StartupPath + "\\" + "tools\\netdraw.exe"
vnademo.txt路径:@Application.StartupPath + "\\" + "tools\\vnademo.txt"

其中,vnademo.txt中的内容是打开netdraw时的一些参数
如何才能把参数正确地传给netdraw?
大哥大姐求帮助......


噜噜哒
浏览 557回答 1
1回答

慕村9548890

没有安装你说的那个程序,但步骤也就是先读取TXT文件,把内容读出来作为参数打开应用程序呗,我用如下代码调用IE打开一个网站是可以的:StreamReader sr = new StreamReader(@"E:\Test\ConsoleTest\url.txt");            String url=sr.ReadLine();            System.Diagnostics.Process myProcess = new System.Diagnostics.Process();            myProcess.StartInfo.FileName = "iexplore.exe";            myProcess.StartInfo.Arguments = url;            myProcess.Start();
打开App,查看更多内容
随时随地看视频慕课网APP