添加windows事件(此事件方法有六个或者更多),在closing或者close中写System.exit(0);关闭窗口。可以直接继承windowsAdapter只要写其中的几个方法就行(比如你只要关闭方法就不用其他方法了)。
import java.awt.*;
import java.awt.event.*;//增加的引入public class frametest {
public static void main(String args[]){
Frame frame1=new Frame();
//增加的代码
frame1.addWindowListener(new WindowAdapter(){
@Override
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
frame1.setSize(300,300);
frame1.setVisible(true);
frame1.setBackground(Color.blue);
}
}