当前位置: 技术问答>java相关
在java程序里如何打开一个html链接
来源: 互联网 发布时间:2015-05-18
本文导语: 在java程序里如何打开一个html链接?就如同在vc里用shellexecute可以打开任何类型的文件(如exe,html,txt等) | //in java application try this. try { Runtime rt = Runtime.getRuntime(); rt.e...
在java程序里如何打开一个html链接?就如同在vc里用shellexecute可以打开任何类型的文件(如exe,html,txt等)
|
//in java application try this.
try
{
Runtime rt = Runtime.getRuntime();
rt.exec("rundll32 url.dll,FileProtocolHandler http://www.china91.com");
}catch(Exception e){}
//in applet try this
getAppletContext().showDocument(new URL("http://www.china91.com"),"_blank");
try
{
Runtime rt = Runtime.getRuntime();
rt.exec("rundll32 url.dll,FileProtocolHandler http://www.china91.com");
}catch(Exception e){}
//in applet try this
getAppletContext().showDocument(new URL("http://www.china91.com"),"_blank");
|
使用applet中提供的一个接口方法。
getAppletContext().showDocument(new URL("http://www.csdn.net"), "_blank");
getAppletContext().showDocument(new URL("http://www.csdn.net"), "_blank");