Question

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.

Was it helpful?

Solution 2

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.

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top