JFrame.dispose() vs System.exit()
Asked Answered
S

6

37

What is the difference between these two methods - System.exit() and JFrame.dispose()?

If we want to close a Java Swing application when a button is clicked, which method should I use?

Seaward answered 13/11, 2012 at 12:3 Comment(2)
on button click. is about standalone JButton with System.exit(0) or from button in JFrames ToolBarSuiter
JFrame.dispose() triggers a bug, it seems System.exit() is advisedWaistband
H
63

System.exit(); causes the Java VM to terminate completely.

JFrame.dispose(); causes the JFrame window to be destroyed and cleaned up by the operating system. According to the documentation, this can cause the Java VM to terminate if there are no other Windows available, but this should really just be seen as a side effect rather than the norm.

The one you choose really depends on your situation. If you want to terminate everything in the current Java VM, you should use System.exit() and everything will be cleaned up. If you only want to destroy the current window, with the side effect that it will close the Java VM if this is the only window, then use JFrame.dispose().

Hoax answered 13/11, 2012 at 12:8 Comment(4)
The problem I see with System.exit is that it really kills the application, even if a thread is, for example, writing a file. It seems to me that most applications close the window, than wait for rest of the threads to complete. But as the AWT threads may not complete, we've got a problem how to implement this in Java properly.Lauter
thanks for the documentation. I was looking for this oneDurrell
@TomášZato-ReinstateMonica That thread would then mean the VM never exits, either. The solution is to ensure that the 'close' button is not accessible. System.exit is what you should call if your intent is for the app to be shut down. A combination of ensuring any UI elements that lead to this are disabled for the duration, + Runtime's addShutdownHook are for cleanup.Confabulate
Thanks indeed for the documentation. docs.oracle.com/javase/6/docs/api/java/awt/… goes straight to what I think is the most relevant bitLoud
C
12

JFrame.dispose()

public void dispose()

Releases all of the native screen resources used by this Window, its subcomponents, and all of its owned children. That is, the resources for these Components will be destroyed, any memory they consume will be returned to the OS, and they will be marked as undisplayable. The Window and its subcomponents can be made displayable again by rebuilding the native resources with a subsequent call to pack or show. The states of the recreated Window and its subcomponents will be identical to the states of these objects at the point where the Window was disposed (not accounting for additional modifications between those actions).

Note: When the last displayable window within the Java virtual machine (VM) is disposed of, the VM may terminate. See AWT Threading Issues for more information.

System.exit()

public static void exit(int status)

Terminates the currently running Java Virtual Machine. The argument serves as a status code; by convention, a nonzero status code indicates abnormal termination. This method calls the exit method in class Runtime. This method never returns normally.

The call System.exit(n) is effectively equivalent to the call:

Runtime.getRuntime().exit(n)
Caddoan answered 13/11, 2012 at 12:9 Comment(0)
A
6

In addition to the above you can use the System.exit() to return an exit code which may be very usuefull specially if your calling the process automatically using the System.exit(code); this can help you determine for example if an error has occured during the run.

Adele answered 13/11, 2012 at 12:12 Comment(0)
B
5
  • If you have multiple windows open and only want to close the one that was closed use JFrame.dispose().

  • If you want to close all windows and terminate the application use System.exit()

Bursitis answered 12/8, 2014 at 23:17 Comment(0)
S
0

JFrame.dispose() affects only to this frame (release all of the native screen resources used by this component, its subcomponents, and all children). System.exit() affects to entire JVM.

If you want to close all JFrame or all Window (since Frames extend Windows) to terminate the application in an ordered mode, you can do some like this:

Arrays.asList(Window.getWindows()).forEach(e -> e.dispose()); // or JFrame.getFrames()
Sourdough answered 11/9, 2020 at 14:22 Comment(0)
K
0

If you terminate your programme then you use System.exit(0);

On the other hand,you have multiple window,,but you can terminate & close only one window then you use dispose();

Kirwan answered 22/9, 2021 at 8:42 Comment(1)
Your answer could be improved with additional supporting information. Please edit to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers in the help center.Amply

© 2022 - 2024 — McMap. All rights reserved.