Different text color in JTextArea

Is it possible to have different lines in different colors in a text box? Do you have an example for this?

+3
source share
1 answer

Not with JTextArea. However, you can use JTextPaneone that allows you to apply attributes to the text. If you want examples, check out the Text Component Tutorial .

+11
source

All Articles