0

我可以使用此代码制作新行

StringBuilder sb = new StringBuilder();  
sb.append("<span style=\"color:black\">--------------</span> <br>");  
sb.append("<span style=\"color:red\">Error." + e.toString() + "</span> <br>");
sshoutput.setContentType("text/html");  
sshoutput.setText(sb.toString());

但是当我用另一个文本再次执行此操作时,它只显示第二个文本而不是在此之后

错误。” + e.toString()

对不起,我的英语不是很好。我希望你明白。

4

1 回答 1

3

我现在正在使用 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”的文本窗格。

于 2013-03-09T16:02:46.273 回答