如何在java中复制到JEditorPane时保持字体不变?

时间:2013-02-01 11:21:20

标签: java swing jeditorpane

我有JEditorPane我会从其他应用程序中复制一些文字,例如Adobe Pagemaker,Corel Draw等我想保持我的字体不变。我该怎么办?

2 个答案:

答案 0 :(得分:2)

  

我想要一个不同字体的JEditorPane

How to Use Editor Panes and Text Panes中的示例可能会为您提供指导。特别是,TextComponentDemo说明了以编程方式和交互方式更改字体特征。有关详细信息,请参阅initDocument()

答案 1 :(得分:1)

您必须使用StyleContext设置默认字体,然后为JEditorPane设置StyleContext对象

阅读about StyleContext