我已经搜索了这个站点,oracle 和其他站点,但无济于事。
我的程序有几个问题,但现在我只想处理一个。
首先让我发布我遇到问题的程序部分
验证年龄方法
private void verifyAge()
{
String ca = iP.cAge.getText();
try
{
a = Integer.parseInt(ca);
if (a < 0 || a > 120)
{
JOptionPane.showMessageDialog(null,"Enter number between 0"
+ " and 120", "Input Error",JOptionPane.ERROR_MESSAGE);
iP.cAge.setText("");
}
}
catch(NumberFormatException afe)
{
JOptionPane.showMessageDialog(null, "Must Enter Number", "Input"
+ " Error", JOptionPane.ERROR_MESSAGE);
iP.cAge.setText("");
}
}
我有一个 FileListener,这段代码将进入。在继续执行代码之前,它需要运行和循环,直到错误得到修复。有没有人有任何建议,请举例说明。