我想在没有确切路径的情况下使用新会话动态打开Internet Explorer。我尝试使用以下命令从Java打开Internet Explorer:
Runtime.getRuntime().exec("iexplore.exe -noframemerging http://google.com/");
但由于iexplore.exe
未在系统变量中定义,因此无法找到该位置。
请建议我前进的方法。
答案 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\"");