空表中的表模型
我正在创建一个 Java Swing 应用程序,它显示一个带有表格的窗口,用户可以在其中插入或删除存储在数组中的选定元素。对于该表,我创建了一个扩展 DefaultTableModel 类的表模型类。 当所有元素都从表中删除时,就会出现问题,因为会引发空指针异常。有谁知道这个问题的快速解决方案?
提前致谢!
I am creating a Java Swing application which displays a window with a table where the user can insert or delete selected elements stored in an array. For this table I have created a table model class extending the DefaultTableModel class.
The problem arises when all the elements have been deleted from the table, as a null pointer exception is thrown. Does anyone know a quick solution to this problem?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常通过 使用自定义渲染器。例如:
I usually handle such model-view conversion anomalies by Using Custom Renderers. For example: