Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JEditorpane vs. JTextPane

i have to create a project in java swing for my college. An editor of java files with proper text highlighting i.e different colors and fonts for java keywords, java comments and for normal text.
Help me to select one of two styled text component JEditorpane and JTextPane provided by java so that i can full-fill the requirements.
Please tell me suitable difference between these two that in which kind of situation i have to use one of these.

like image 685
Sachin Kumar Avatar asked Sep 30 '13 12:09

Sachin Kumar


1 Answers

Although both support rich text. But there is difference.

JEditorPane supports display/editing of HTML.

JTextPane is an extension of JEditorPane which provides word processing features like fonts, text styles, colors, etc.

like image 66
Masudul Avatar answered Oct 07 '22 18:10

Masudul