gpt4 book ai didi

java - 如何等到用户关闭框架才能运行其余代码?

转载 作者:行者123 更新时间:2023-11-30 04:38:36 24 4
gpt4 key购买 nike

我这里有这段代码,它是一个调用另一个 jFrame 来编辑内容的按钮,这些内容进入需要用户输入才能更新的 jTable 中。我想通过放入相同的按钮来自动更新,但是当我调用更新 jTable 的函数时没有任何反应,可能是因为 java 机器不等待...

private void editarImovelActionPerformed(java.awt.event.ActionEvent evt) // Button {                                             
int i = 0;
int linha = tabelaImoveis.getSelectedRow(); // tabelaImoveis = jTable
if (tabelaImoveis.isRowSelected(linha)) {
{
try {
Integer codigo = Integer.parseInt(tabelaImoveis.getValueAt(linha, 0).toString());
} catch (Exception e) {
mensagem.message("Linha sem Valor!");
i = 1;
} finally {
if (i == 0) {
Integer codigo = Integer.parseInt(tabelaImoveis.getValueAt(linha, 0).toString());
for (Imovel imovel : imovelLista) {

if (imovel.getCodigo() == codigo) { frmAlterar alterar = new frmAlterar();
alterar.setLocationRelativeTo(null);
alterar.setVisible(true);
alterar.setDefaultCloseOperation(alterar.DISPOSE_ON_CLOSE);
alterar.setarAtributos(imovel);

}
}
}
}
}
} else {
mensagem.message("Select Something!"); // Same as System.out...
}


updatejTable(); // This code here I want to execute after the frame "alterar" closes
}

最佳答案

这个问题的答案与所有​​类似问题(而且有很多)相同:不要使用另一个 JFrame,使用模态 JDialog。

    if (i == 0) { 
Integer codigo = Integer.parseInt(tabelaImoveis.getValueAt(linha, 0).toString());
for (Imovel imovel : imovelLista) {
if (imovel.getCodigo() == codigo) {
frmAlterar alterar = new frmAlterar(); // *** this should be a modal JDialog
alterar.setLocationRelativeTo(null);
// alterar.setVisible(true);
// alterar.setDefaultCloseOperation(alterar.DISPOSE_ON_CLOSE);
alterar.setarAtributos(imovel);
alterar.setVisible(true);
}
}
}

关于java - 如何等到用户关闭框架才能运行其余代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12830957/

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