在Java中打开Internet Explorer而不指定路径

时间:2015-05-21 08:16:22

标签: java internet-explorer runtime.exec

我想在没有确切路径的情况下使用新会话动态打开Internet Explorer。我尝试使用以下命令从Java打开Internet Explorer:

Runtime.getRuntime().exec("iexplore.exe -noframemerging http://google.com/");

但由于iexplore.exe未在系统变量中定义,因此无法找到该位置。

请建议我前进的方法。

2 个答案:

答案 0 :(得分:3)

以下内容会将google加载到Windows上的默认浏览器中...

Runtime.getRuntime().exec("cmd /c start http://google.com/");

答案 1 :(得分:0)

Process browser = Runtime.getRuntime().exec("C:\\Program Files\\Internet Explorer\\iexplore.exe \"http://www.google.com\"");