开发者

Java JTextPane Change Font of Selected Text

开发者 https://www.devze.com 2022-12-14 13:22 出处:网络
I have a JTextPane(or JEditorPane, I can use either no problem).How can I change the font of a selected area to a specific font?

I have a JTextPane (or JEditorPane, I can use either no problem). How can I change the font of a selected area to a specific font?

textpane.getSelectedText().setFont() won't work. (Even wi开发者_开发知识库th font-family)


You can change JTextPane's font only as a whole, it doesn't do rich text.

There's a Document underneath JEditorPane (and apparently JTextPane too), which you get a hold of with getDocument(). You want to cast that to a StyledDocument if you can, and then you can do things like setCharacterAttributes to a given run of characters.

There are some (hopefully) helpful examples in the Java tutorial at http://java.sun.com/docs/books/tutorial/uiswing/components/editorpane.html .


You can do this by using JTextPane. It is impossible to do this using JTextArea. . Here is a best example on how to use JTextPane.

Sample: http://download.oracle.com/javase/tutorial/uiswing/components/editorpane.html

Code: http://download.oracle.com/javase/tutorial/uiswing/examples/components/TextSamplerDemoProject/src/components/TextSamplerDemo.java

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号