Thread synchronize with GUI controls
I need to modify some GUI controls (append text to JTextArea) from my custom thread..
Javadoc say that the method append of JTextArea is thread-safe, but if I call it from my thread the application go in blocking-state
So I try to use, SwingUtilities.invokeLater but when I try to append some text to JTextArea, the application go in blocking-state..
How can I do for synchronize method call from my thread to main thread..?
Thanks..

