码迷,mamicode.com
首页 > 编程语言 > 详细

java调用浏览器打开链接代码

时间:2017-07-27 10:39:25      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:int   浏览器   http   rundll32   打开   start   ogr   baidu   .exe   

调用IE浏览器打开链接URL:
Runtime.getRuntime().exec("cmd /c start iexplore http://www.baidu.com/");

ProcessBuilder builder = new ProcessBuilder(
"c:\\Program Files\\Internet Explorer\\iexplore", "http://www.baidu.com");
builder.start();

>实际上就是调用CMD控制台来调用IE浏览器,所以这行代码也可以用来实现其他的CMD指令。

调用默认浏览器打开链接URL:
Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler http://www.baidu.com/");

java调用浏览器打开链接代码

标签:int   浏览器   http   rundll32   打开   start   ogr   baidu   .exe   

原文地址:http://www.cnblogs.com/hasa193/p/7243197.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!