在下面的代码中,我需要知道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);
}
答案 0 :(得分: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