hi to all:)
i would like to create an basic Text editor...!it must allow some basic editor functions such as undo,redo and highlight some specific keywords.. Which swing component is suitable JTextArea or JEditorPane or any other suggestion..!
Printable View
hi to all:)
i would like to create an basic Text editor...!it must allow some basic editor functions such as undo,redo and highlight some specific keywords.. Which swing component is suitable JTextArea or JEditorPane or any other suggestion..!
JEditorPane is designed for basic text editing, so that's what you should start with. It supports highlighting, but you'll have to implement the undo/redo functionality yourself.