Search code examples
javaswingjtextpanebulletedlist

How to implement bullet points in a JTextPane?


I have a JTextPane with a StyledDocument and RTFEditorKit implemented.

How can I add bullet points (preferrably multi-level ones) onto the JTextPane?


Solution

  • Figured it out doing this:

    HTMLEditorKit.InsertHTMLTextAction bulletAction = new HTMLEditorKit.InsertHTMLTextAction("Bullet", "<li> </li>", HTML.Tag.BODY, HTML.Tag.UL);