我是靠谱客的博主 多情缘分,最近开发中收集的这篇文章主要介绍java 程序关闭_java – 在应用程序关闭时调用方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

>调用JFrame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE)

>在框架中添加

WindowListener.

>覆盖侦听器的相应方法以调用close方法,然后将该帧设置为不可见并将其处置掉.

例如.

import java.awt.*;

import java.awt.event.*;

import java.net.URI;

import javax.swing.*;

import javax.swing.border.EmptyBorder;

class CheckExit {

public static void doSomething() {

try {

// do something irritating..

URI uri = new URI(

"https://stackoverflow.com/users/418556/andrew-thompson");

Desktop.getDesktop().browse(uri);

} catch(Exception e) {

e.printStackTrace();

}

}

public static void main(String[] args) throws Exception {

Runnable r = new Runnable() {

@Override

public void run() {

// the GUI as seen by the user (without frame)

JPanel gui = new JPanel(new BorderLayout());

gui.setPreferredSize(new Dimension(400, 100));

gui.setBackground(Color.WHITE);

final JFrame f = new JFrame("Demo");

f.setLocationByPlatform(true);

f.add(gui);

// Tell the frame to 'do nothing'.

f.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);

WindowListener listener = new WindowAdapter() {

@Override

public void windowClosing(WindowEvent we) {

int result = JOptionPane.showConfirmDialog(

f, "Close the application");

if (result==JOptionPane.OK_OPTION) {

doSomething();

f.setVisible(false);

f.dispose();

}

}

};

f.addWindowListener(listener);

// ensures the frame is the minimum size it needs to be

// in order display the components within it

f.pack();

// should be done last, to avoid flickering, moving,

// resizing artifacts.

f.setVisible(true);

}

};

// Swing GUIs should be created and updated on the EDT

// http://docs.oracle.com/javase/tutorial/uiswing/concurrency/initial.html

SwingUtilities.invokeLater(r);

}

}

最后

以上就是多情缘分为你收集整理的java 程序关闭_java – 在应用程序关闭时调用方法的全部内容,希望文章能够帮你解决java 程序关闭_java – 在应用程序关闭时调用方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部