JTable没有显示出来

时间:2014-10-21 15:16:16

标签: java swing jtable springlayout

我是Java初学者,我正在使用Eclipse创建一个带有SpringLayout和内部按钮的简单应用程序。我将该按钮称为“btnTABLE”,这是actionPerformed代码:

btnTABLE.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent arg0) {

        String[] columnNames = {"First Name",
                "Last Name",
                "Sport",
                "# of Years",
                "Vegetarian"};

        Object[][] data = {
                {"Kathy", "Smith",
                 "Snowboarding", new Integer(5), new Boolean(false)},
                {"John", "Doe",
                 "Rowing", new Integer(3), new Boolean(true)},
                {"Sue", "Black",
                 "Knitting", new Integer(2), new Boolean(false)},
                {"Jane", "White",
                 "Speed reading", new Integer(20), new Boolean(true)},
                {"Joe", "Brown",
                 "Pool", new Integer(10), new Boolean(false)}
            };

        JTable table = new JTable(data, columnNames);
        JScrollPane scrollPane = new JScrollPane(table);
        table.setFillsViewportHeight(true);
    }
});

但是当我点击该按钮时,表格不显示。

1 个答案:

答案 0 :(得分:2)

  

带有SpringLayout的简单应用

SpringLayout是一个复杂的布局管理器。你可以'只需使用简单的代码,如:

frame.getContentPane().add(scrollPane); 

使用SpringLayout时,您需要指定一些约束。有关详细信息,请阅读How to Use SpringLayout上的Swing教程中的部分。

此外,如果您尝试将组件动态添加到可见GUI,则基本代码为:

panel.add(...);
panel.revalidate();
panel.repaint();

我建议你应该为面板使用不同的布局管理器。