How to implement in JEditorPane on text changed method ( get text on every character added or deleted ) ?

link|improve this question

63% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You need to register a document listener with the document of the JEditorPane which will be notified when text is inserted or removed or when the text style changes.

Take a look at Java Tutorial > How to Write a Document Listener for more information about document listeners and document events.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.