문제

How to get to the application closing event?

I want to get application to save all unsaved operations or show the user a message "Are you sure about closing without saving all data?" something like this.

If this will be helpful - the application is a SingleFrameAplication using Swing.

도움이 되었습니까?

해결책

You could use a shutdown hook. It works for Swing, AWT and even console applications.

Example:

Runtime.getRuntime().addShutdownHook(new Thread()
{
    @Override
    public void run()
    {
        //do your stuff
    }
});

다른 팁

You have to add WindowListener to your JFrame / JDialog, about closing event is there method public void windowClosing(WindowEvent e) { code example here

You can use sun.misc.Signal or Runtime.getRuntime().addShutdownHook

More info

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top