All Downloads are FREE. Search and download functionalities are using the official Maven repository.

samples.TestShutdownHook Maven / Gradle / Ivy

//Licensed under Apache License version 2.0
//Original license LGPL

package samples;

import java.io.*;
/**
 * TestShutdownHook.
 *
 * @author  Werner Randelshofer
 * @version 1.0  May 24, 2004  Created.
 */
public class TestShutdownHook {
    
    /** Creates a new instance. */
    public static void main(String[] args) {
        Runtime.getRuntime().addShutdownHook(
        new Thread() {
            public void run() {
                System.out.println("Shutdown Hook");
            }
        }
        );
        try {
       int b;
       while ((b=System.in.read()) != -1) {
           System.out.print("\""+(char) b);
       }
        } catch (IOException e) {
        }
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy