关闭桌面/本机窗口的Java代码可以使用以下方法:
System.exit(0)
方法:这个方法会立即终止Java虚拟机,关闭所有窗口并退出程序。代码示例:import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JFrame;
public class CloseWindowExample {
public static void main(String[] args) {
JFrame frame = new JFrame("Close Window Example");
frame.setSize(300, 200);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
frame.setVisible(true);
}
}
推荐的腾讯云相关产品:腾讯云服务器(CVM),产品介绍链接地址:https://cloud.tencent.com/product/cvm
Window.dispose()
方法:这个方法会释放窗口占用的资源,并关闭窗口。代码示例:import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JFrame;
public class CloseWindowExample {
public static void main(String[] args) {
JFrame frame = new JFrame("Close Window Example");
frame.setSize(300, 200);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
JFrame window = (JFrame) e.getWindow();
window.dispose();
}
});
frame.setVisible(true);
}
}
推荐的腾讯云相关产品:腾讯云服务器(CVM),产品介绍链接地址:https://cloud.tencent.com/product/cvm
请注意,以上代码示例是使用Java的Swing库创建的窗口,如果使用其他GUI库或框架,关闭窗口的方法可能会有所不同。
领取专属 10元无门槛券
手把手带您无忧上云