JTable数据垂直滚动时不稳定

发布于 2024-12-05 01:38:19 字数 281 浏览 0 评论 0原文

我开发了一个由 JTable 组成的 Java Swing 应用程序。 JTable显示文本文件的数据。文本文件以逗号分隔。显示后,我总结总数并将其显示在另一个可以垂直滚动的 JTable 中。但是当表中的行较多时,那么JTable在垂直滚动时就不稳定。数据重复或文件损坏。

在此处输入图像描述

在此输入图像描述

I have developed a Java Swing application which consists of JTable. The JTable displays data of text file. The textfile is comma separated. After displaying i am summing up the totals and displaying them in another JTable which can be vertically scrolled. But when the rows in the table are more, then the JTable is not stable when vertically scrolled. The data gets repeated or the file gets corrupted.

enter image description here

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

北音执念 2024-12-12 01:38:19

可能存在(没有代码,没有哈希)一些问题

1) 并发性 Swing

2) 为什么 JTable 在运行时加载数据,或者 JTables 和一个 TableModel 之间存在未知的并发性

3) 添加您的数据到DefaultTableModel

4) 最好实现 DefaultTableModel 对于每个 JTable 单独

更多教程示例

there is maybe (no code, no hash) some issues with

1) Concurency in Swing,

2) why JTable loads data on Runtime or there un-know concurency between JTables and one TableModel

3) add your data to the DefaultTableModel

4) better would be implements DefaultTableModel for each of JTable separately

more tutorial and examples

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