java程序中指定某个浏览器打开的实现方法
本文主要介绍的是利用java程序打开指定某个的浏览器,文中分享了四种实现方法,感兴趣的朋友们下面来一起看看吧。
方法一:
packagecom.test; importjava.lang.reflect.Method; //实现打开浏览器并跳到指定网址的类 publicclassBareBonesBrowserLaunch{ publicstaticvoidopenURL(Stringurl){ try{ browse(url); }catch(Exceptione){ } } privatestaticvoidbrowse(Stringurl)throwsException{ //获取操作系统的名字 StringosName=System.getProperty("os.name",""); if(osName.startsWith("MacOS")){ //苹果的打开方式 ClassfileMgr=Class.forName("com.apple.eio.FileManager"); MethodopenURL=fileMgr.getDeclaredMethod("openURL",newClass[]{String.class}); openURL.invoke(null,newObject[]{url}); }elseif(osName.startsWith("Windows")){ //windows的打开方式。 Runtime.getRuntime().exec("rundll32url.dll,FileProtocolHandler"+url); }else{ //UnixorLinux的打开方式 String[]browsers={"firefox","opera","konqueror","epiphany","mozilla","netscape"}; Stringbrowser=null; for(intcount=0;count方法二:
使用默认浏览器打开:
Stringsite="www.baidu.com"; try{ Desktopdesktop=Desktop.getDesktop(); if(desktop.isDesktopSupported()&&desktop.isSupported(Desktop.Action.BROWSE)){ URIuri=newURI(site); desktop.browse(uri); } }catch(IOExceptionex){ System.out.println(ex); }catch(URISyntaxExceptionex){ System.out.println(ex); }方法三:
通过获取环境变量的浏览器路径,然后启动浏览器
Stringfirefox="C:\\ProgramFiles\\MozillaFirefox\\firefox.exe"; Mapmap=System.getenv(); for(Iteratoritr=map.keySet().iterator();itr.hasNext();){ Stringvalue=(String)map.get((String)itr.next()); if(value.contains("firefox.exe")){ firefox=value; break; } } Runtime.getRuntime().exec(newString[]{firefox,"www.baidu.com"});方法四:
js方式:
window.onload=function(){ varWSH=newActiveXObject("WScript.Shell"); WSH.Run("chrome.exewww.baidu.com"); } 总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对毛票票的支持。