在下面的代码中,我需要知道 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);
}