java中关闭窗口的方法

本篇文章给大家分享的是有关java中关闭窗口的方法,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

目前创新互联公司已为上千的企业提供了网站建设、域名、网页空间、网站托管维护、企业网站设计、化德网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。

java关闭窗口的方法:

1、使用JFrame的enableEvents和processWindowEvent

//Frame1.java   
import java.awt.*;   
import java.awt.event.*;   
import javax.swing.*;   
public class Frame1 extends JFrame {   
public Frame1() {   
enableEvents(AWTEvent.WINDOW_EVENT_MASK);   
this.setSize(new Dimension(400, 300));   
this.setTitle("Frame1");   
}   
protected void processWindowEvent(WindowEvent e) {   
super.processWindowEvent(e);   
if (e.getID() == WindowEvent.WINDOW_CLOSING) {   
System.exit(0);   
}   
}   
}

2.直接实现WindowListener接口

//Frame1.java   
import java.awt.*;   
import java.awt.event.*;   
public class Frame1 extends Frame implements WindowListener {   
public Frame1() {   
this.setSize(new Dimension(400, 300));   
this.setTitle("Frame1");   
this.addWindowListener(this);   
}   
public void windowClosing(WindowEvent windowEvent) {   
System.exit(0);   
}   
public void windowOpened(WindowEvent windowEvent) { }   
public void windowClosed(WindowEvent windowEvent) { }   
public void windowIconified(WindowEvent windowEvent) { }   
public void windowDeiconified(WindowEvent windowEvent) { }   
public void windowActivated(WindowEvent windowEvent) { }   
public void windowDeactivated(WindowEvent windowEvent) { }   
}

3.直接继承窗体适配器WindowAdapter

//Frame1.java   
import java.awt.*;   
import java.awt.event.*;   
public class Frame1 extends WindowAdapter {   
public Frame1() {   
Frame f=new Frame();   
f.setSize(new Dimension(400, 300));   
f.setTitle("Frame1");   
f.addWindowListener(this);   
f.setVisible(true);   
}   
public static void main(String[] s){   
new Frame1();   
}   
public void windowClosing(WindowEvent windowEvent) {   
System.exit(0);   
}   
}

4.间接继承窗体适配器WindowAdapter

//Frame1.java   
import java.awt.*;   
import java.awt.event.*;   
public class Frame1 extends Frame {   
public Frame1() {   
this.setSize(new Dimension(400, 300));   
this.setTitle("Frame1");   
this.addWindowListener(new winAdapter());   
this.setVisible(true);   
}   
public static void main(String[] s){   
new Frame1();   
}   
}   
class winAdapter extends WindowAdapter{   
public void windowClosing(WindowEvent windowEvent) {   
System.exit(0);   
}   
}

5.间接实现WindowListener接口

//Frame1.java   
import java.awt.*;   
import java.awt.event.*;   
public class Frame1 extends Frame {   
public Frame1() {   
this.setSize(new Dimension(400, 300));   
this.setTitle("Frame1");   
this.addWindowListener(new winEventHandle());   
this.setVisible(true);   
}   
public static void main(String[] s){   
new Frame1();   
}   
}   
class winEventHandle implements WindowListener {   
public void windowClosing(WindowEvent windowEvent) {   
System.exit(0);   
}   
public void windowOpened(WindowEvent windowEvent) { }   
public void windowClosed(WindowEvent windowEvent) { }   
public void windowIconified(WindowEvent windowEvent) { }   
public void windowDeiconified(WindowEvent windowEvent) { }   
public void windowActivated(WindowEvent windowEvent) { }   
public void windowDeactivated(WindowEvent windowEvent) { }   
}

6.使用Inner Class

//Frame1.java   
import java.awt.*;   
import java.awt.event.*;   
public class Frame1{   
public Frame1(){   
Frame f=new Frame();   
f.addWindowListener(new WindowAdapter(){   
public void windowClosing(WindowEvent e){   
System.exit(0);   
}   
});   
f.setSize(new Dimension(400, 300));   
f.setVisible(true);   
}   
public static void main(String[] s){   
new Frame1();   
}   
}

Jframe的关闭方法:

setDefaultCloseOperation(EXIT_ON_CLOSE);

frame的关闭方法如下:

this.addWindowListener(new java.awt.event.WindowAdapter() {   
public void windowClosing(java.awt.event.WindowEvent e) {   
System.exit(0);   
}   
});

以上就是java中关闭窗口的方法,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注创新互联行业资讯频道。

分享名称:java中关闭窗口的方法
网页URL:https://www.cdcxhl.com/article4/pgiooe.html

成都网站建设公司_创新互联,为您提供自适应网站云服务器建站公司手机网站建设网站策划网站维护

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

成都app开发公司