JAVA: Executing Code Before Shutdown

Sometimes, you need to do something before application is shutting down, such as closing any open connection, closing up all opened file or anything else. Luckily, the JVM is always do these two steps below before shutdown:

  1. Run all registered shutdown hooks, if any. Shutdown hooks are threads registered with the Runtime. All shutdown hooks are run concurrently until they finish.
  2. Calls all uninvoked finalizers, if appropriate

Now we can use shutdown hooks to cleanup any resources or do something when application shutdown.

The example application is the TimePrint class. This application will print the current time on the console each second.

//TimePrint.java

import java.text.SimpleDateFormat;
import java.util.Date;

public class TimePrint implements Runnable {
    private SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss SSS");

    public void run() {
        while(true) {
            System.out.println( fmt.format(new Date()) );
            try {
                Thread.sleep(1000);
            } catch(InterruptedException ex) 
            {}
        }
    }

    public static void main(String[] args) {
        TimePrint obj = new TimePrint();
        new Thread(obj).start();
    }
}

There, you done. Just compile and run the application. The output will be like this:

2009-09-12 12:31:20 003
2009-09-12 12:31:21 018
2009-09-12 12:31:22 019
2009-09-12 12:31:23 020
2009-09-12 12:31:24 021
2009-09-12 12:31:25 023
2009-09-12 12:31:26 024

Now all we do, is add the ShutdownHook using the addShutdownHook of the Runtime class. and print Counter. It will be like this

//TimePrint2.java

import java.text.SimpleDateFormat;
import java.util.Date;

public class TimePrint2 implements Runnable {
    private SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss SSS");
    private int printCount;

    public void doPrintCount() { 
        System.out.println( "Printing time for " + printCount + " times" ); 
    }

    public void run() {
        while(true) {
            System.out.println( fmt.format(new Date()) );
            //increase printCount
            printCount++;
            try {
                Thread.sleep(1000);
            } catch(InterruptedException ex) 
            {}
        }
    }
    public static void main(String[] args) {
        final TimePrint2 obj = new TimePrint2();
        Runtime.getRuntime().addShutdownHook( new Thread() {
            public void run() {
                //print how many times
                obj.doPrintCount();
            }
        } );
        new Thread( obj ).start();
    }
}

Run it and press CTRL+C after a couple times of print. It should print the printCount var.

Have fun with Java

10 Comments | [Put comments]

  1. gravatar mully - May 1, 2011

    <img>http://img816.imageshack.us/img816/3038/thecrashtookplaceinstpe.jpg</img>
    <font color=black><u>This is the aftermath of a crash involving a Bentley Continental GT, a soccer players wife and a very slippery stretch of road. Driving along a street in St. Petersburg late last week, Marina Malafeeva, the 36-year </u></font><a href=http://venits.info><font color=black><u>old</u></font></a><font color=black><u> wife of the goal keeper of Russian soccer club Zenit St Petersburg, lost control of her vehicle.

    She slid at high speed into a snow embankment before flipping over and crashing through a nearby billboard and into a tree. Sadly, Malafeeva died on impact and her passenger seriously injured.

    Full details are still coming in but its believed that the bright blue Bentley was traveling at speeds in excess of 100 mph when the crash occurred. Its also believed that both occupants were not wearing their seatbelts and alcohol may have been involved!</u></font>

  2. gravatar attalgabs - May 1, 2011

    Drug Made From Onion http://inmate-roster.com/ - propecia
    http://inmate-roster.com/ - order propecia online In contrast to that fact, the men in the study who were not taking Propecia continued to lose their hair on a daily basis. <a href=http://inmate-roster.com/>finasteride no prescription</a> It was approved by the FDA in 1997 so treat MPB (male pattern baldness). <a href=http://inmate-roster.com/>generic propecia without prescription</a>

  3. gravatar lypeepifs - May 2, 2011

    These offers allow players to check out everything that a Poker room has to offer and get the full playing experience, without ever having to make a

  4. gravatar aloncops - January 20, 2012

    You can start a nicotine replacement therapy or get a stop smoking injection.
    They also may be able to provide you with nutritional information about menu selections.
    Sexual dysfunction can occur at any stage of a person's life.
    I?? Herring, Sardines and Salmon are all oily fishes.
    This deposit increases the urine PH, making it more alkaline and less acidic.

  5. gravatar irene_hark - January 20, 2012

    how make sex videos super mario hentai game free toy porn video sex musem parental consent sex lesbian boob sex pics hot muscle man movie xxx elegant collars bdsm ahrdcore porn all celebrities porn long lenght porn list all celebrity sex tapes amateur babes sex animal porn movie thumbs party drunk porn home made amature porn videos free teen masturbation site forced raped sex kings of leon sex on fire music sex tube free videos

  6. gravatar suiseense - February 5, 2012

    поздравления с 23 февраля
    <a href=http://idimka.ru/%D0%BF%D0%BE%D0%B7%D0%B4%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F_%D1%81_23_%D1%84%D0%B5%D0%B2%D1%80%D0%B0%D0%BB%D1%8F>поздравления с 23 февраля любимому</a>
    смс с 23 февраля

  7. gravatar tumrellrava - February 9, 2012

    <a href=http://multibars.ru/multibar-skachat-besplatno.html>мультибар техно</a>

  8. gravatar meabitmelay - February 9, 2012

    Поздравления с днем святого Валентина для парня
    <a href=http://idimka.ru/pozdravlenie_%D1%81_day_%D1%81%D0%B2%D1%8F%D1%82%D0%BE%D0%B3%D0%BE_valentina>Поздравления с днем святого Валентина</a>
    Поздравления с днем святого Валентина sms

  9. gravatar wanofluncally - February 13, 2012

    Kinds Amphetamines Pills , http://www.buymichaeljacksoncostumes.com/ - tamoxifen price Patients should discuss side effects with their doctor as they occur so that the patient and the doctor can determine whether or not Novaldex continues to be the best course of treatment. <a href=http://www.buymichaeljacksoncostumes.com/>nolvadex price</a>

Leave a Reply