当前位置: 技术问答>java相关
Applet关闭的小问题!送分!
来源: 互联网 发布时间:2015-08-31
本文导语: 小弟学做Applet小程序,当关闭Applet View时小程序也就关闭了,但是我想在applet中放个按钮,JButton quit=new JButton().那么关闭的代码该如何来写! | quit.addActionListener(new ActionListener(){ public v...
小弟学做Applet小程序,当关闭Applet View时小程序也就关闭了,但是我想在applet中放个按钮,JButton quit=new JButton().那么关闭的代码该如何来写!
|
quit.addActionListener(new ActionListener(){
public void actionPerform(ActionEvent e)
{
System.exit(0);
}
});
public void actionPerform(ActionEvent e)
{
System.exit(0);
}
});
|
public void actionPerformed(ActionEvent e)
{
if(e.getSource()== quit)
{
System.exit(0);
}
}
{
if(e.getSource()== quit)
{
System.exit(0);
}
}
|
Frame f = new Frame("test");
f.addWindowListener(new MyAdapter());
static class MyAdapter extends WindowAdapter {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
}
f.addWindowListener(new MyAdapter());
static class MyAdapter extends WindowAdapter {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
}
|
rongrongGsr()的方法不是你想要的吗?
|
这么写在IE里浏览你的applet时,关闭按钮会起作用吗?