0

它将如何运作?如果我按下按钮并且文本字段为空,它将在文本文件旁边显示一个星号。

if(txtfname.getText().equals(" ")){
  JOptionPane.showMessageDialog(null, "Missing field");
  jLabel20.setText("*");
}
4

1 回答 1

4
if(txtfname.getText().trim().isEmpty())//Trim removes unnecessary chars is empty checks for emptyness
//show *

请记住字符串可以生成,因此您还应该trim()在之前检查。nullNullPointerExceptionnull

于 2012-10-13T08:03:10.357 回答