1

只是在寻找一个快速的答案:是否可以将 JTable 用作 JScrollPane 的 columnHeader?

我有一个具有不同列宽和列标题的配置 JTable,并计划将标题用作滚动窗格的 columnHeader。我怎样才能做到这一点?我用

scrollPane.setColumnHeaderView(table);

但它没有出现。

所以感谢 Guillaume Polet,它应该是

scrollpane.setColumnHeaderView(table.getTableHeader());

但是现在所有的列都具有相同的宽度,尽管我在表中将它们设置为不同的值。我怎样才能让表格列显示不同的宽度?

4

1 回答 1

3

如果我理解正确,您希望表格的列标题出现在视口的列标题中,但您希望在视口视图中显示其他内容?

然后你需要抓取表格标题并将其设置为视口的列标题。

这是一个例子:

import java.awt.BorderLayout;
import java.util.Vector;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class TestTableHeader {

    protected void initUI() {
        Vector<Vector<Object>> data = new Vector<Vector<Object>>();
        Vector<String> colNames = new Vector<String>();
        for (int i = 0; i < 5; i++) {
            colNames.add("Col-" + (i + 1));
        }

        table = new JTable(data, colNames);
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        scrollpane = new JScrollPane();
        scrollpane.setColumnHeaderView(table.getTableHeader());
        scrollpane.setViewportView(new JLabel("some label in the viewport view"));
        frame.add(scrollpane, BorderLayout.CENTER);
        frame.pack();
        frame.setVisible(true);
    }

    private JTable table;
    private JScrollPane scrollpane;

    public static void main(String[] args) throws ClassNotFoundException, InstantiationException, IllegalAccessException,
            UnsupportedLookAndFeelException {
        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        SwingUtilities.invokeLater(new Runnable() {

            @Override
            public void run() {
                new TestTableHeader().initUI();
            }
        });
    }

}
于 2012-10-23T16:56:20.980 回答