我有个问题。我在 JTextPane、chatWindow 中附加了一个带有 insertString 的字符串,但唯一的问题是我不知道如何将“insertString”“插入”到我的 JTextPane。这是我的代码:
private void showMessage(final String string){
SwingUtilities.invokeLater(
new Runnable(){
public void run(){
//chatWindow.append(string);
//THE BOTTOM METHOD IS USED FOR APPENDING A STRING JTEXTPANE STYLE
try
{
//doc.insertString(0, "Start of text\n", null );
//doc.insertString(doc.getLength(), "", string );
//doc.insertString(int offset, String str, ArributeSet a);
//SETTING THE STYLE FOR THE STRING (down below)
StyleConstants.setForeground(keyWord, Color.getHSBColor(251, 89, 87));
//StyleConstants.setBackground(keyWord, Color.YELLOW);
StyleConstants.setBold(keyWord, false);
doc.insertString(0, string, keyWord);
}
catch(Exception e) { System.out.println(e); }
}
}
);
}
它在哪里说:
doc.insertString(0, string, keyword);
这是我将字符串附加到聊天窗口的地方。我唯一的问题是我不知道“插入字符串”是如何专门针对 chatWindow 的,就像我在 try-catch 方法上面的注释中所做的那样:
chatWindow.append(string)
有谁知道我可以使用 'doc.insertString(0, string, keyword);' 将字符串关键字插入到chatWindow?doc.insertString 的结果没有显示在我的聊天窗口中。谢谢。