gpt4 book ai didi

java - Java中的输入表单

转载 作者:行者123 更新时间:2023-12-01 07:38:35 27 4
gpt4 key购买 nike

我正在学习 swing,并且创建了一个简单的表单: enter image description here

我已经在按下提交按钮时实现了它,它检查所有字段是否不为空,如果有任何字段为空,则显示消息“请填写所有字段”,但我不知道当您如果任何字段为空,请按“确定”。现在我正在使用“System.exit(0);”但这不是我需要的。谢谢。

enter image description here

if (getTxt.trim().equals("") || getTxt2.trim().equals("") || getTxt3.trim().equals("") || getTxt4.trim().equals("") || getTxt5.trim().equals("")) {
JOptionPane.showMessageDialog(null,"Please fill in all the fields!!");
System.exit(0);
}

最佳答案

假设您在“提交”按钮的 onClick 中编写此代码。如果是这样,那么您可以返回而不是退出。如果方法中没有更多代码,则只需删除 System.exit(0);

if (getTxt.trim().equals("") || getTxt2.trim().equals("") || getTxt3.trim().equals("") || getTxt4.trim().equals("") || getTxt5.trim().equals("")) {
JOptionPane.showMessageDialog(null,"Please fill in all the fields!!");
return;
}

关于java - Java中的输入表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8339942/

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