JTableModelListener.tableChanged() thread safe?
问题 Is the tableChanged() call on a JTable thread safe, so that i am allowed to call it from another Thread, which for example finished downloading something? I imagine tableChanged() to just put a new Event into the Event queue, so that the Event-Dispatcher-Thread will update the JTable at some point in the future, but is this adding thread safe? 回答1: Short answer no, it is not thread safe and all calls to tableChanged should be made from within the context of the Event Dispatching Thread. If