当前位置: 技术问答>java相关
求调用ie代码,运行成功即给分,在线等待!
来源: 互联网 发布时间:2015-05-28
本文导语: 一段完整的在application里调用ie的代码 简简单单的,如点击一个button就弹出ie窗口,显示要打开的网页 另外除了使用Runtime类的方法还有没有其它方法? | try { Runtime.getRuntime().exec("R...
一段完整的在application里调用ie的代码
简简单单的,如点击一个button就弹出ie窗口,显示要打开的网页
另外除了使用Runtime类的方法还有没有其它方法?
简简单单的,如点击一个button就弹出ie窗口,显示要打开的网页
另外除了使用Runtime类的方法还有没有其它方法?
|
try {
Runtime.getRuntime().exec("Rundll32.exe url.dll, FileProtocolHandler " + "index.html"); //在Windows平台上运行系统默认Web浏览器打开帮助页面
} catch (Exception ex) {
System.out.println(ex);
}
在win2000上通过,用和.html关联的浏览器打开叶面
Runtime.getRuntime().exec("Rundll32.exe url.dll, FileProtocolHandler " + "index.html"); //在Windows平台上运行系统默认Web浏览器打开帮助页面
} catch (Exception ex) {
System.out.println(ex);
}
在win2000上通过,用和.html关联的浏览器打开叶面