11

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.

mKorbel
  • 108,320
  • 17
  • 126
  • 296
Sachin Kumar
  • 731
  • 1
  • 9
  • 24

2 Answers2

32

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.

Masudul
  • 21,045
  • 5
  • 38
  • 51
11

You can use either of them, but if it is a rich text editor then I would suggest using the JTextPane.

You may also find this topic useful.

Community
  • 1
  • 1
Dan D.
  • 31,836
  • 4
  • 59
  • 77