JTable数据垂直滚动时不稳定
我开发了一个由 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能存在(没有代码,没有哈希)一些问题
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 betweenJTables
and oneTableModel
3) add your data to the DefaultTableModel
4) better would be implements
DefaultTableModel
for each ofJTable
separatelymore tutorial and examples