OnExit Event For a Swing Application?

前端 未结 3 1985
盖世英雄少女心
盖世英雄少女心 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:43

    Runtime.getRuntime().addShutdownHook(new Thread()
    {
        @Override
        public void run()
        {
            updateZonas();
            db.close();
        }
    });
    

    This works for any Java application(Swing/AWT/Console)

提交回复
热议问题