1
我希望用戶在JTextField
中輸入一個值,並使用監聽器來聆聽文本字段,並在不按任何鍵的情況下直接將值打印到控制檯。如何在用戶輸入後立即打印JTextField值?
textfield1.addChangeListener(new ChangeListener() {
public void actionPerformed(ActionEvent e) {
System.out.println(textfield1);
}
});
錯誤:
<anonymous textfield$2> is not abstract and does not override abstract method stateChanged(ChangeEvent) in ChangeListener
的可能重複http://stackoverflow.com/questions/3953208/value-change-listener-to- jtextfield – maheeka
Iam在談論ChangeListener而不是documentlistener。你可以幫我嗎? – user2994263
我不認爲你會,但如果你對我告訴你放置代碼的位置感到困惑,請評論我的回答。雖然這很容易,你可能會得到它。 –