我製作了一個聊天客戶端應用程序,並且卡在登錄對話框中。基本上,我想要註冊按鈕事件來檢測用戶是否輸入任何內容到字段框中。此代碼不起作用。如何檢測JTextField是否爲空?
public class RegButtonListener implements ActionListener
{
\t public void actionPerformed(ActionEvent event)
\t {
\t \t if(userBox.getText() != null)
\t \t {
\t \t \t System.out.println("Lol");
\t \t }
\t }
}
您是否嘗試過檢查空字符串代替? – JonK
我試着檢查它是否等於空(==而不是!=),但沒有任何反應。就好像JTextField userBox不會爲空。 –