从内容面板中删除JTable

时间:2013-10-27 20:07:43

标签: java swing jtable jframe

我正在使用JTable以图形方式显示我正在开发的应用程序的搜索结果。我希望能够在不再需要表时删除表,然后用新创建的表替换它。以下是我目前将表格添加到我的JFrame中的方法:

    userLibrary = new CustomLibrary(users, LIBRARY_WIDTH, LIBRARY_HEIGHT);
    userLibrary.setOpaque(true);
    userLibrary.setBounds(LIBRARY_START_X, LIBRARY_START_Y, LIBRARY_WIDTH, LIBRARY_HEIGHT);
    getContentPane().add(userLibrary);

我的自定义库(扩展了JPanel)执行以下操作:

public CustomLibrary(LinkedList<User> usernames, int width, int height) {
    CustomTable table = new CustomTable(userRows,columnNames);
    table.setPreferredScrollableViewportSize(new Dimension(width, height));
    table.setFillsViewportHeight(true);
    table.setAutoCreateRowSorter(true);
    JScrollPane scrollPane = new JScrollPane(table);

    // Add the scroll pane to this panel.
    add(scrollPane);
}

现在一切正常并显示我的表格,但我无法弄清楚如何从我的内容窗格中完全删除该表格。我试过打电话

getContentPane().remove(userLibrary);

但这似乎无能为力。

所以我的一般问题是。一旦我已经创建并绘制了一个表,我如何从我的JFrame中完全删除它?

2 个答案:

答案 0 :(得分:6)

  

我希望能够在不再需要表时删除表,然后将其替换为新创建的表。

最简单的方法是替换JTable的TableModel:

table.setModel( yourNewlyCreatedTableModel );

无需创建JTable或JScrollPane。

答案 1 :(得分:1)

要删除并将其替换为其他组件:

contentPanel.remove(table);
contentPanel.add(component, BorderLayout.CENTER);

添加/删除组件后,您应该执行以下操作:

panel.add(...);
panel.revalidate();
panel.repaint(); // sometimes needed

通常,JTable显示在JScrollPane中。所以也许更好的解决方案是使用:

scrollPane.setViewportView( anotherComponent );