调用外部程序netdraw启动文件vnademo.txt,该如何写?NetDraw路径:@Application.StartupPath + "\\" + "tools\\netdraw.exe"vnademo.txt路径:@Application.StartupPath + "\\" + "tools\\vnademo.txt"其中,vnademo.txt中的内容是打开netdraw时的一些参数如何才能把参数正确地传给netdraw?大哥大姐求帮助......
1 回答
慕村9548890
TA贡献1884条经验 获得超4个赞
没有安装你说的那个程序,但步骤也就是先读取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();
- 1 回答
- 0 关注
- 556 浏览
添加回答
举报
0/150
提交
取消