JTable 和线程

发布于 2024-10-16 12:51:03 字数 69 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

執念 2024-10-23 12:51:03

Swing 通常不是线程安全的。如果您需要从 AWT Event-dispatch-Thread 以外的线程修改 Swing 组件,请使用

SwingUtilities.invokeLater(new Runnable(){public void run() {
   // here your modification code
}});

替代方法 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

SwingUtilities.invokeLater(new Runnable(){public void run() {
   // here your modification code
}});

Alternatively invokeAndWait. (These methods in fact do the same as the like-named methods in java.awt.EventQueue.)

心不设防 2024-10-23 12:51:03

仅添加一行。之后,不会添加任何行。

可能是因为您每次都重新创建 TableModel,或者您有多个对 TableModel 的引用,并且您的代码正在更新错误的模型。

Only one row gets added. After that, no row gets added.

Probably because you recreate the TableModel every time, or you have multiple references to the TableModel and your code is updating the wrong model.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文