How to change font of JTextPane and center text. I tried with textPane.setFont(font); but then i cannot center text and i tried using
    SimpleAttributeSet attribs = new SimpleAttributeSet();  
    StyleConstants.setAlignment(attribs , StyleConstants.ALIGN_CENTER); 
, but then i cannot change font...