当前位置: 技术问答>java相关
用applet怎么实现显示html页面?
来源: 互联网 发布时间:2017-04-09
本文导语: 我有两个html文件,每个文件都包含一个applet。那么我怎么实现在一个页面里边按一个按钮弹出另一个html页面呢?谢谢!!!! | URL url = getCodeBase(); try { getA...
我有两个html文件,每个文件都包含一个applet。那么我怎么实现在一个页面里边按一个按钮弹出另一个html页面呢?谢谢!!!!
|
URL url = getCodeBase();
try
{
getAppletContext().showDocument(new URL(url + "RealReg.htm"), "right");
}
catch(MalformedURLException e1)
{
getAppletContext().showStatus("Error connecting to URL");
}
try
{
getAppletContext().showDocument(new URL(url + "RealReg.htm"), "right");
}
catch(MalformedURLException e1)
{
getAppletContext().showStatus("Error connecting to URL");
}
|
在按钮的actionPerformed事件里写上下面的代码
this.getAppletContext().showDocument(new java.net.URL("/tech-qa-java/2.htm"),"_blank");
this.getAppletContext().showDocument(new java.net.URL("/tech-qa-java/2.htm"),"_blank");
|
我试成功过!
一个页面(html)包含两个框架(Frame),每个FRAME是个html(applet),
你在例外的页面中调用显示另为的页面的话,
this.getAppletContext().showDocument(new java.net.URL("/tech-qa-java/2.htm"),"是另一个框架的名称就行拉");
一个页面(html)包含两个框架(Frame),每个FRAME是个html(applet),
你在例外的页面中调用显示另为的页面的话,
this.getAppletContext().showDocument(new java.net.URL("/tech-qa-java/2.htm"),"是另一个框架的名称就行拉");