我正在使用JTextPane。
JTextPane pane = new JTextPane();
String content = "I'm a line of text that will be displayed in the JTextPane";
StyledDocument doc = pane.getStyledDocument();
SimpleAttributeSet aSet = new SimpleAttributeSet();
如果我将此aSet
添加到文本窗格的文档中,如下所示:
doc.setParagraphAttributes(0, content.length(), aSet, false);
没有任何可见的事情发生。没有什么大惊喜,因为我没有为aSet
设置任何自定义属性。但是,如果我允许aSet
替换doc
这样的当前ParagraphAttributes:
doc.setParagraphAttributes(0, content.length(), aSet, true);
很多事情都发生了。如何获取有关JTextPane文档的默认值的信息?特别是我的问题是,当我为aSet
定义自定义字体并将其设置为替换当前属性时,字体显示为粗体。 StyleConstants.setBold(aSet, false);
没有帮助。
答案 0 :(得分:3)
我查看了source code,了解哪些数据结构包含您想要的信息。这是对该代码的修改,它打印每个段落的属性。
int offset, length; //The value of the first 2 parameters in the setParagraphAttributes() call
Element section = doc.getDefaultRootElement();
int index0 = section.getElementIndex(offset);
int index1 = section.getElementIndex(offset + ((length > 0) ? length - 1 : 0));
for (int i = index0; i <= index1; i++)
{
Element paragraph = section.getElement(i);
AttributeSet attributeSet = paragraph.getAttributes();
Enumeration keys = attributeSet.getAttributeNames();
while (keys.hasMoreElements())
{
Object key = keys.nextElement();
Object attribute = attributeSet.getAttribute(key);
//System.out.println("key = " + key); //For other AttributeSet classes this line is useful because it shows the actual parameter, like "Bold"
System.out.println(attribute.getClass());
System.out.println(attribute);
}
}
通过setText()
方法添加了一些文本的简单textPane的输出显示:
class javax.swing.text.StyleContext$NamedStyle
NamedStyle:default {foreground=sun.swing.PrintColorUIResource[r=51,g=51,b=51],size=12,italic=false,name=default,bold=false,FONT_ATTRIBUTE_KEY=javax.swing.plaf.FontUIResource[family=Dialog,name=Dialog,style=plain,size=12],family=Dialog,}
关于您的特定问题,查看related SO question我已经能够将段落的文本设置为粗体:
StyleContext sc = StyleContext.getDefaultStyleContext();
AttributeSet aSet = sc.addAttribute(aSet, StyleConstants.Bold, true);
在这种情况下,aSet
的类是javax.swing.text.StyleContext$SmallAttributeSet
,它不可变(不实现MutableAttributeSet
)。对于你的情况,一句话:
aSet.addAttribute(StyleConstants.Bold, true);
应该有用。