我现在正在使用 JTextPane,我所做的是:
JTextPane pane = new JTextPane();
StyledDocument doc = pane.getStyledDocument();
所以我可以使用以下方法在任何地方插入字符串:
doc.insertString(STRING POSITION, STRING, null);
我对这种方法没有例外。还有一种简单的方法可以使用以下方式设置字母样式:
SimpleAttributeSet set = new SimpleAttributeSet();
//Here you modify set. Set is collection of
//various style instructions
//(letters color, bolded, italic, background color etc.)
//You modify set using StyleConstants class.
doc.setCharacterAttributes(START, LENGTH, set, true);
编辑:一个示例,它创建文本窗格并在其中写入样式为“Hello World”:
JTextPane pane = new JTextPane();
StyledDocument doc = pane.getStyledDocument();
doc.insertString(0, "Hello", null);
SimpleAttributeSet set = new SimpleAttributeSet();
StyleConstans.setForeground(set, Color.RED);
doc.setCharacterAttributes(0, 5, set, true);
doc.insertString(5, "World!", null);
SimpleAttributeSet set = new SimpleAttributeSet();
StyleConstans.setForeground(set, Color.BLUE);
doc.setCharacterAttributes(5, 6, set, true);
使用 GridLayout(1, 1) 将其添加到 JPanel 中,您应该会看到其中包含红色字符串“Hello”和蓝色字符串“World”的文本窗格。