我可以使用此代码创建新行
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()
抱歉,我的英语不是很好。我希望你明白。
答案 0 :(得分: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”。