如何验证只能接受整数的空textField?

时间:2012-02-16 10:48:18

标签: java hibernate

我是这样写的;但它没有整数只有textfields

if(textField_1.getText().length()==0)  

JOptionPane.showMessageDialog(null, "enter text in textfield");  

请帮忙......

2 个答案:

答案 0 :(得分:2)

通常,在使用Java验证用户输入时,您需要检查空字符串值和空字符串值。要检查String对象是否相等,必须使用.equals()方法(而不是==运算符)。因此,检查空String值可能如下所示:

if ( val == null || val.trim().equals( "" ) )
{
    // handle empty String case
}
else
{
    // handle non-empty String case
}

希望这有帮助

答案 1 :(得分:2)

if(textField_1.getText().isEmpty()){
    JOptionPane.showMessageDialog(null, "enter text in textfield");  
}