如何从JTable中删除一行? [英] How to remove a row from JTable?

查看:523
本文介绍了如何从JTable中删除一行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想从JTable中删除一些行。我该怎么办?

I want to remove some rows from a JTable. How can I do it?

推荐答案

为了从JTable中删除一行,您需要从中删除目标行基础 TableModel 。例如,如果您的TableModel是的实例DefaultTableModel ,您可以通过执行以下操作来删除行:

In order to remove a row from a JTable, you need to remove the target row from the underlying TableModel. If, for instance, your TableModel is an instance of DefaultTableModel, you can remove a row by doing the following:

((DefaultTableModel)myJTable.getModel()).removeRow(rowToRemove);

这篇关于如何从JTable中删除一行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆