0

相对不言自明,如何在 JTextPane 中居中选定文本?

(对齐任何文本都有帮助)

4

1 回答 1

3

在 coderanch 上找到了一些代码:

     SimpleAttributeSet attribs = new SimpleAttributeSet();  
StyleConstants.setAlignment(attribs , StyleConstants.ALIGN_CENTER);  
pane.setParagraphAttributes(attribs,true);
于 2012-07-08T17:56:33.443 回答