Thanks to devsundar我发现了如何以JEditorPane
粗体/下划线/斜体/其他方式制作所选文字。如何在Font Size
?
JEditorPane
我目前改变粗体/斜体/等的方法:
AttributeSet aset = sc.addAttribute(SimpleAttributeSet.EMPTY,
StyleConstants.StrikeThrough, true);
pane.getStyledDocument().setCharacterAttributes(pane.getSelectionStart(),
pane.getSelectionEnd(), aset, true);