I have a JTextArea and I'd like to listen when the user pastes text in the JtextArea. Specifically, I'd like to do the following:
Get the text they pasted, remove whitespaces, and replace the JTextArea text with the edited text without spaces (rather than the original text the user pasted).
How can I do this using a DocumentListener, and avoiding java.lang.UnsupportedOperationException: Not supported yet.
, which comes as a result of the following code:
public void insertUpdate(DocumentEvent de) {
final String replace = jTextArea1.getText().replaceAll("\\s","");
SwingUtilities.invokeLater(new Runnable() {
public void run() {
jTextArea1.setText(replace);
}
});
}
I haven't any issue with method
insertUpdate(DocumentEvent documentEvent)
, sure JTextArea can accepting only chars input, if you'll have an issue use JEditorPane, there you can importing another Java AWT and Swing Objects toocode example
for replacing inserted characters you have to add DocumentFilter