COMPLETE SOURCE CODE FOR : ExitApplication.java
*****************************************************************
public class ExitApplication
{
public static void main(String[]args)
{
//System.exit(0) will make your application exit
System.exit(0);
}
}
*****************************************************************
JUST COMPILE AND EXECUTE IT
*****************************************************************