Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Close application when click on JFrame close button (Java)


*********************************************************
COMPLETE SOURCE CODE FOR : ExitApplicationUsingJFrameCloseButton.java
*********************************************************
import javax.swing.JFrame;

public class ExitApplicationUsingJFrameCloseButton
{
 public static void main(String[]args)
 {
  JFrame a=new JFrame("EXIT AN APPLICATION USING JFRAME CLOSE BUTTON");
 
  //JFrame.EXIT_ON_CLOSE will make your application close when you hit JFrame close button
  a.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  a.setSize(200,200);
  a.setVisible(true);
 }
}


*********************************************************
JUST COMPILE AND EXECUTE IT
*********************************************************