0
我有一個JTable
(searchListTable
)並希望從表中刪除一行而不使用表模型。另外,我從XML中獲取searchlist
中的數據。如何從JTable中刪除一行?
這裏是我的代碼:
int selIndex[] = searchListTable.getSelectedRows();
if (selIndex != null) {
searchListTable.removeRow(selIndex);
keyValueTableModel.removeRows(selIndex);
SwingUtilities.updateComponentTreeUI(searchListTable);
searchListTable.clearSelection();
請幫助.. 如何從表中刪除行?
您正在尋找'removeRowSelectionInterval ()'?爲什麼不使用模型?它保存這些數據,並且它會通知該表的變化; 'updateComponentTreeUI'不適合這個。 – trashgod
可以請你幫我與表模型。我有問題使用它。 – user3824693
請編輯您的問題以包含顯示您的表格模型的[mcve](http://stackoverflow.com/help/mcve)。 – trashgod