0

在下面的代码中,我需要知道 JTextField 保存的文本是否仅包含字符,或者它是否还包含数字条目。

ResultSet rs= ItemQuery.findItem(jTextfield1.getText());
while(rs.next()){
    i_name =rs.getString(2);
    jLabel5.setText(i_name);
    currStock = Integer.toString(rs.getInt(3));
    jLabel6.setText(currStock);
    date = new SimpleDateFormat("yyyy-MM-dd").format(rs.getDate(4));                
    jLabel8.setText(date);
}
4

1 回答 1

0

您可以使用循环来查找任何数字或字符以外的任何其他内容。

flag=1;
for (int i=0;i++;i<string.size()){
   if (!Character.isLetter(string.charat(i))){
        flag=0;
        break;
   }
}

 if (flag==0)
  // control enters this if statement when any thing other than letters is encountered in the string
于 2013-11-10T14:41:03.390 回答