How to Close a Window in Java
This article will show you how to close a window in Java. Closing a window is much easier using Swing's JFrame, but it's also doable using AWT's Frame. Obtain an instance of a JFrame, or create a new one. Set default close operation....
Method 1 of 2:
Using javax.swing.JFrame
- Obtain an instance of a
JFrame
, or create a new one. - Set default close operation. Default close operation is set using the setter method inside the
JFrame
classsetDefaultCloseOperation
that determines what happens when the close button is clicked and takes the following parameters:WindowConstants.EXIT_ON_CLOSE
- Closes the frame and terminates the execution of the program.WindowConstants.DISPOSE_ON_CLOSE
- Closes the frame and does not necessarily terminate the execution of the program.WindowConstants.HIDE_ON_CLOSE
- Makes the frame appear like it closed by setting its visibility property to false. The difference betweenHIDE_ON_CLOSE
andDISPOSE_ON_CLOSE
is that the latter releases all of the resources used by the frame and its components.WindowConstants.DO_NOTHING_ON_CLOSE
- Does nothing when the close button is pressed. Useful if you wish to, for example, display a confirmation dialog before the window is closed. You can do that by adding aWindowListener
to the frame and overridingwindowClosing
method. Example of the custom close operation:frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE); frame.addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { // Ask for confirmation before terminating the program. int option = JOptionPane.showConfirmDialog( frame, "Are you sure you want to close the application?", "Close Confirmation", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE); if (option == JOptionPane.YES_OPTION) { System.exit(0); } } });
Method 2 of 2:
Using java.awt.Frame
- Obtain an instance of a
Frame
, or create a new one. - Add window listener. Call
addWindowListener
method on the instance. The required argument isWindowListener
. You can either implement every method of theWindowListener
interface or override only the methods you need fromWindowAdapter
class. - Handle window closing event. Implement
windowClosing
method fromWindowListener
interface or override it fromWindowAdapter
class. There are two ways of closing a window:- Dispose the window after the close button is clicked:
- Call
dispose
method insidewindowClosing
method.
frame.addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { // Dispose the window after the close button is clicked. dispose(); } });
- Call
- Terminate the program after the close button is clicked:
- Call
System.exit
method insidewindowClosing
method.
frame.addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { // Terminate the program after the close button is clicked. System.exit(0); } });
- Call
- Dispose the window after the close button is clicked:
3.4 ★ | 7 Vote
You should read it
- How to merge multiple photos into one frame in Photoshop
- 4 ways to measure FPS frame rate (Frame Per Second) in PC game
- How to close the application on Android
- Method in HTTP
- How to show the alignment frame in Word
- How to Close Apps in Windows 8
- How to frame text in Word
- Canonical releases Ubuntu Frame for embedded screen developers
- What do you know about 'digital picture frames'? Ask Lenovo
- How to merge 2 images into 1 frame in Word
- Review Canon EOS R5, Best full-frame camera of the year
- How to add Mid-Autumn Frames to Facebook avatars
Maybe you are interested
How to draw a frame around text using the Snipping Tool
Instructions for installing .NET Framework 3.5 on Windows 10
How to combine photos in Word, combine 2 photos into 1 frame
China develops the world's fastest vision chip, 10,000 frames per second
How to fix Microsoft .NET Framework errors
How to fix iPhone with blue frame 99% effective