没有安装你说的那个程序,但步骤也就是先读取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();
其中url.txt中就存放了博客园地址