JTable 和线程
我正在使用 JTable。许多线程将尝试向 JTable 添加行。
问题:仅添加一行。之后,不再添加任何行。
I am using JTable. Many threads will try to add rows to the JTable.
Problem : Only one row gets added. After that, no row gets added.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Swing 通常不是线程安全的。如果您需要从 AWT Event-dispatch-Thread 以外的线程修改 Swing 组件,请使用
替代方法
invokeAndWait
。 (这些方法实际上与 java.awt.EventQueue 中类似名称的方法执行相同的操作。)Swing is generally not thread-safe. If you need to modify Swing components from Threads other than the AWT Event-dispatch-Thread, use
Alternatively
invokeAndWait
. (These methods in fact do the same as the like-named methods injava.awt.EventQueue
.)可能是因为您每次都重新创建 TableModel,或者您有多个对 TableModel 的引用,并且您的代码正在更新错误的模型。
Probably because you recreate the TableModel every time, or you have multiple references to the TableModel and your code is updating the wrong model.