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 に答える