Search code examples
javastyledtext

What is the simplest way to view styled text (e.g. in HTML) in a Java application?


I want to view styled text, for example in html (not html file, just html string). I've tried using JEditorPane but it's so difficult, is there any more simple way?


Solution

  • JEditorPane.setText(htmlString)
    

    JEditorPane tutorial