Java - Is it possible to define different alignment in JTextPane?
问题 I have JTextPane which contains html, I define my own JTextPane class as follow: public class MyPane extends JTextPane { static SimpleAttributeSet Format2 = new SimpleAttributeSet(); static SimpleAttributeSet Format1 = new SimpleAttributeSet(); static { StyleConstants.setForeground(Format1, Color.black); StyleConstants.setLeftIndent(Format1, 5); StyleConstants.setRightIndent(Format1, 5); StyleConstants.setSpaceAbove(Format1, 0); StyleConstants.setSpaceBelow(Format15); StyleConstants