What is best control in Java for simple editor

126 Views Asked by At

I need to implement light editor ( recognize part of key words, syntax highlight and suggest all of word in dropdown list if user type part with same prefix). What is best control in Java for this task ?

3

There are 3 best solutions below

0
On BEST ANSWER

You can go through the Java Tutorial - Using Text Components along with the examples page.

0
On
0
On

You could use JEditTextArea as a start point.