当前位置: 技术问答>java相关
applet显示html页面
来源: 互联网 发布时间:2015-03-09
本文导语: 在applet的一个事件中打开一个url连接,现在想把该url连接的html页面显示 在applet所在的浏览器窗口里,该怎么做? | URL u = null; try{ u = new URL("http://www.263.net"); } catch(MalformedURLExc...
在applet的一个事件中打开一个url连接,现在想把该url连接的html页面显示
在applet所在的浏览器窗口里,该怎么做?
在applet所在的浏览器窗口里,该怎么做?
|
URL u = null;
try{
u = new URL("http://www.263.net");
}
catch(MalformedURLException me){System.out.println("error");}
getAppletContext().showDocument(u,"_blank");
try{
u = new URL("http://www.263.net");
}
catch(MalformedURLException me){System.out.println("error");}
getAppletContext().showDocument(u,"_blank");