applet如何刷新它所在的页面? (100分)

  • 主题发起人 主题发起人 lwqhhy
  • 开始时间 开始时间
L

lwqhhy

Unregistered / Unconfirmed
GUEST, unregistred user!
我想点击我的applet中的一个按钮,来刷新它所在的页面,不知如何实现?请高手赐教!
 
和这个问题类似的是如何让applet所在的页面指向另一个页面,就象response.redirect?
 
this.getAppletContext().showDocument("http://www.delphibbs.com");
老弟这么会问这种问题呢,你看看高手们都不愿意回答你。还是哥们好心吧。
 
老兄继续帮忙,编译后出现如下错误,如何解决?
method showDocument(java.lang.String) not found in interface java.applet.AppletContext.
 
参数好像是个url类,不是字符串,我也记不清了,你自己看一下帮助嘛。
他说的基本上是正确的。thinking in java里面也有,如果你有的话,可以
查一下。
 
this.getAppletContext().showDocument(new URL("www.delphibbs.com")) ;
写漏了,不好意思,兄弟
 
strurl="www.delphibbs.com";
try{
URL url = new URL(strurl);
this.getAppletContext().showDocument(url);
}
catch(Exception e){}
象上面这样写后能编译通过,不过点这个按钮没反应,不知为何?
 
try
strurl="http://www.delphibbs.com";
 
在你们的帮助下已经解决,谢谢!
 
后退
顶部