gpt4 book ai didi

java - 使用 JButton 关闭当前打开的应用程序

转载 作者:行者123 更新时间:2023-12-01 07:29:34 25 4
gpt4 key购买 nike

我想要做的是有一个JButton,当您单击它时,它将关闭JFrame/Application。我制作了一个 JButton 但我想知道如何让它关闭当前打开的窗口。

最佳答案

为按钮注册一个监听器,然后在单击按钮时调用 System.exit(0)。

JButton button = new JButton("Close");
button.addActionLister(new ActionListener(){

public void actionPerformed(ActionEvent e){
System.exit(0);
}
});

关于java - 使用 JButton 关闭当前打开的应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19200324/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com