文字欄位值變更偵聽器
您的目標是在文字欄位中的值變更時立即顯示訊息方塊。但是,您目前的代碼僅在按下回車鍵後才會提示訊息框。要解決此問題,請關注底層文件以追蹤文字欄位變更。
解決方案:
在 Swing 中引入,JTextFields 利用儲存和管理文字的文件內容。新增 DocumentListener 允許您監視欄位內的文字變更。以下是更新後的程式碼:
// Listen for changes in the text textField.getDocument().addDocumentListener(new DocumentListener() { public void changedUpdate(DocumentEvent e) { warn(); } public void removeUpdate(DocumentEvent e) { warn(); } public void insertUpdate(DocumentEvent e) { warn(); } public void warn() { if (Integer.parseInt(textField.getText()) <= 0) { JOptionPane.showMessageDialog(null, "Error: Please enter number bigger than 0", "Error Message", JOptionPane.ERROR_MESSAGE); } } });
使用 DocumentListener 後,欄位中的任何文字變更現在都會觸發 warn() 方法,該方法檢查輸入並在需要時顯示訊息方塊。這樣,使用者修改文字後立即出現訊息框,滿足您的要求。
以上是如何在 Swing 中的 TextField 值變更時立即顯示訊息框?的詳細內容。更多資訊請關注PHP中文網其他相關文章!