OnExit Event For a Swing Application?

前端 未结 3 1991
盖世英雄少女心
盖世英雄少女心 2020-12-15 22:25

I\'m developing a simple application to manage the operational part of a business using Swing, but I need that when the application exits, it performs this:

         


        
3条回答
  •  一个人的身影
    2020-12-15 22:35

    Are you using a JFrame? if so you can try this:

        myframe.addWindowListener(new java.awt.event.WindowAdapter() {
            public void windowClosing(WindowEvent winEvt) {
                updateZonas();
                db.close();
                System.exit(0);
            }
        });
    

提交回复
热议问题