I have a JTextPane I'm using to put the chat history of a chat application. There are two sources for it's content right now:
- Client thread listening for server messages.
- GUI: a JField and button to add to the the messages (temporary as everything is meant to come from the server)
Here's the code used by both methods:
private void appendText(String text, AttributeSet attr) {
try {
int len = history.getDocument().getLength();
history.getDocument().insertString(len, text + "\n", attr);
// Convert the new end location
// to view co-ordinates
Rectangle r = history.modelToView(len);
// Finally, scroll so that the new text is visible
if (r != null) {
scrollRectToVisible(r);
}
} catch (BadLocationException e) {
System.out.println("Failed to append text: " + e);
}
}
Debugging I noticed that the code is executed in both scenarios but only actually shows in the component when is ran in the AWT thread via the GUI.
So unless someone else has a better idea I have the following options:
- Somehow run the client thread on the AWT.
- Somehow run the append method on the AWT.
- Use a smart answer from one of you guys.
Any ideas/suggestions?
Try this:
It looks like you are trying to update swing components outside the AWT thread since you are calling appendText directly from your client's thread. You can't do that. Now if you use EventQueue.invokeLater, it will make sure the code that updates the swing components gets executed in the AWT thread no matter from which thread you called the method.