JEditorPane jEditorPane = new JEditorPane();
// allow embedded html in your rendered text
jEditorPane.setContentType( "text/html" );
// restrict your text to HTML 3.2, no ’
jEditorPane.setText( "<html><body>This <em>is</em> good.</body></html>" );