当前位置: 技术问答>java相关
applet与jsp通讯问题:applet为何不能正确显示网页?
来源: 互联网 发布时间:2015-05-08
本文导语: 我的按钮的代码是这样的,但为何按下后没有反应,而且也没有报错信息? void jButton1_actionPerformed(ActionEvent e) { AppletContext ac = getAppletContext(); try ...
我的按钮的代码是这样的,但为何按下后没有反应,而且也没有报错信息?
void jButton1_actionPerformed(ActionEvent e) {
AppletContext ac = getAppletContext();
try
{ ac.showDocument(new URL("/tech-qa-java/haha.html"));
}
catch( MalformedURLException ee )
{
System.err.println( "MalformedURLException caught!" );
System.err.println( ee.getMessage() );
ee.printStackTrace( System.err );
}
}
|
1.把的方法申明为public
2.构建URL需要完全路径
2.构建URL需要完全路径