Zazwyczaj odpowiedź brzmi „użyj DocumentListener
”. Jednak zawsze uważam ten interfejs za kłopotliwy. Naprawdę interfejs jest przeprojektowany. Ma trzy metody wstawiania, usuwania i zastępowania tekstu, gdy potrzebuje tylko jednej metody: zamiany. (Wstawienie może być postrzegane jako zastąpienie tekstu bez tekstu, a usunięcie może być postrzegane jako zastąpienie tekstu bez tekstu).
Zwykle wszystko, co chcesz wiedzieć, to kiedy tekst w polu się zmienił , więc typowa DocumentListener
implementacja ma trzy metody wywołujące jedną metodę.
Dlatego stworzyłem następującą metodę narzędzia, która pozwala używać prostszego ChangeListener
niż DocumentListener
. (Wykorzystuje składnię lambda Java 8, ale w razie potrzeby można ją dostosować do starej Java).
/**
* Installs a listener to receive notification when the text of any
* {@code JTextComponent} is changed. Internally, it installs a
* {@link DocumentListener} on the text component's {@link Document},
* and a {@link PropertyChangeListener} on the text component to detect
* if the {@code Document} itself is replaced.
*
* @param text any text component, such as a {@link JTextField}
* or {@link JTextArea}
* @param changeListener a listener to receieve {@link ChangeEvent}s
* when the text is changed; the source object for the events
* will be the text component
* @throws NullPointerException if either parameter is null
*/
public static void addChangeListener(JTextComponent text, ChangeListener changeListener) {
Objects.requireNonNull(text);
Objects.requireNonNull(changeListener);
DocumentListener dl = new DocumentListener() {
private int lastChange = 0, lastNotifiedChange = 0;
@Override
public void insertUpdate(DocumentEvent e) {
changedUpdate(e);
}
@Override
public void removeUpdate(DocumentEvent e) {
changedUpdate(e);
}
@Override
public void changedUpdate(DocumentEvent e) {
lastChange++;
SwingUtilities.invokeLater(() -> {
if (lastNotifiedChange != lastChange) {
lastNotifiedChange = lastChange;
changeListener.stateChanged(new ChangeEvent(text));
}
});
}
};
text.addPropertyChangeListener("document", (PropertyChangeEvent e) -> {
Document d1 = (Document)e.getOldValue();
Document d2 = (Document)e.getNewValue();
if (d1 != null) d1.removeDocumentListener(dl);
if (d2 != null) d2.addDocumentListener(dl);
dl.changedUpdate(null);
});
Document d = text.getDocument();
if (d != null) d.addDocumentListener(dl);
}
W przeciwieństwie do dodawania detektora bezpośrednio do dokumentu, obsługuje to (niecodzienne) przypadki, w których instalujesz nowy obiekt dokumentu na komponencie tekstowym. Ponadto rozwiązuje problem wymieniony w odpowiedzi Jean-Marc Astesana , w którym dokument czasami wywołuje więcej zdarzeń, niż jest to konieczne.
W każdym razie ta metoda pozwala zastąpić irytujący kod, który wygląda następująco:
someTextBox.getDocument().addDocumentListener(new DocumentListener() {
@Override
public void insertUpdate(DocumentEvent e) {
doSomething();
}
@Override
public void removeUpdate(DocumentEvent e) {
doSomething();
}
@Override
public void changedUpdate(DocumentEvent e) {
doSomething();
}
});
Z:
addChangeListener(someTextBox, e -> doSomething());
Kod udostępniony publicznie. Baw się dobrze!