gpt4 book ai didi

Java 确认退出

转载 作者:行者123 更新时间:2023-11-30 05:55:54 25 4
gpt4 key购买 nike

我有一个应用程序。我需要做这个,当用户点击关闭按钮时,会出现一个确认信息(就像 javascript 确认对话框一样),“你确定吗”?我在 Netbeans 中使用 Swing 可视化编辑器,并且在关闭窗口时使用监听器。但我做不到。有帮助吗?

最佳答案

试试这段代码:

jj4.addActionListener(new ActionListener()  // jj4-button's reference to implement exit
{
public void actionPerformed(ActionEvent ae)
{
if(!jtextarea.getText().equals("") && !jtextarea.getText().equals(fileContent))
{
if(fileName == null)
{
//this method have 3 options (1 = YES, 2 = NO, 3 = Cancel)
option = JOptionPane.showConfirmDialog(null,"Do you want to save the changes ??");
if(option == 0)
{
//to save the text into file
saveAs();
System.exit(0);
}
if(option == 1)
{
//to exit the program without saving
System.exit(0);
}
}
else
{
option = JOptionPane.showConfirmDialog(null,"Do you want to save the changes ??");
if(option == 0)
{
save();
System.exit(0);
}
if(option == 1)
{
System.exit(0);
}
}
}
else
{
System.exit(0);
}
}
});

关于Java 确认退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7695064/

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