简体   繁体   English

JTable细胞颜色

[英]JTable Cell Color

Can someone give me an example of how to get the background color of a particular cell in a JTable? 有人能举例说明如何在JTable中获取特定单元格的背景颜色吗? I am unable to find an example of how to do this. 我无法找到如何执行此操作的示例。 Plenty of examples on getting the value in a cell, but not the background color of a cell. 获取单元格中的值的大量示例,而不是单元格的背景颜色。

It should be something like the following (fixed according to all comments): 它应该类似于以下内容(根据所有评论修复):

Important: use table.prepareRenderer(...) to let JTable do all work for you 重要提示:使用table.prepareRenderer(...)让JTable为您完成所有工作

public Color getTableCellBackground(JTable table, int row, int col) {
    TableCellRenderer renderer = table.getCellRenderer(row, col);
    Component component = table.prepareRenderer(renderer, row, col);
    return component.getBackground();
}

Full demo: 完整演示:

public class TableRenderDemo extends JPanel {

    public TableRenderDemo() {
        super(new GridLayout(1, 0));

        final JTable table = new JTable(new MyTableModel());
        table.setPreferredScrollableViewportSize(new Dimension(600, 200));
        table.setFillsViewportHeight(true);
        table.setDefaultRenderer(Object.class, new MyRenderer());

        table.addMouseListener(new MouseAdapter() {

            public void mouseClicked(MouseEvent e) {
                int row = table.getSelectedRow();
                int col = table.getSelectedColumn();

                JOptionPane.showInternalMessageDialog(TableRenderDemo.this,
                        "Color: " + getTableCellBackground(table, row, col));

                System.out.println("Color: " + getTableCellBackground(table, row, col));
            }
        });

        JScrollPane scrollPane = new JScrollPane(table);
        add(scrollPane);
    }

    public Color getTableCellBackground(JTable table, int row, int col) {
        TableCellRenderer renderer = table.getCellRenderer(row, col);
        Component component = table.prepareRenderer(renderer, row, col);    
        return component.getBackground();
    }

    class MyRenderer implements TableCellRenderer {

        public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected,
                boolean hasFocus, int row, int column) {
            JTextField editor = new JTextField();
            if (value != null) {
                editor.setText(value.toString());
            }
            editor.setBackground((row % 2 == 0) ? Color.white : Color.BLUE);
            return editor;
        }
    }

    class MyTableModel extends AbstractTableModel {

        private String[] columnNames = {"First Name",
            "Last Name",
            "Sport",
            "# of Years",
            "Vegetarian"};
        private 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)}
        };
        public final Object[] longValues = {"Jane", "Kathy",
            "None of the above",
            new Integer(20), Boolean.TRUE};

        public int getColumnCount() {
            return columnNames.length;
        }

        public int getRowCount() {
            return data.length;
        }

        public String getColumnName(int col) {
            return columnNames[col];
        }

        public Object getValueAt(int row, int col) {
            return data[row][col];
        }
    }

    private static void createAndShowGUI() {
        JFrame frame = new JFrame("TableRenderDemo");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        TableRenderDemo newContentPane = new TableRenderDemo();
        newContentPane.setOpaque(true); //content panes must be opaque
        frame.setContentPane(newContentPane);

        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        javax.swing.SwingUtilities.invokeLater(new Runnable() {

            public void run() {
                createAndShowGUI();
            }
        });
    }
}

Can someone give me an example of how to get the background color of a particular cell in a JTable? 有人能举例说明如何在JTable中获取特定单元格的背景颜色吗? I am unable to find an example of how to do this. 我无法找到如何执行此操作的示例。

Plenty of examples on getting the value in a cell, but not the background color of a cell. 获取单元格中的值的大量示例,而不是单元格的背景颜色。

  • I can't resist, please on this forum or where 我无法抗拒,请在这个论坛或哪里

  • I hope that help you .... 我希望能帮助你....

To get the JTable color at cell 0, 0 you could get the background color of the cell component: 要在单元格0, 0处获取JTable颜色0, 0您可以获得单元组件的背景颜色:

TableCellRenderer cellRenderer = table.getCellRenderer(0, 0);
Component rendererComponent = cellRenderer.getTableCellRendererComponent(table, null, false, true, 0, 0);
Color cellColor = rendererComponent.getBackground();

Use TableCellRenderer 使用TableCellRenderer

jTable1 = new javax.swing.JTable(6,6){
public Component prepareRenderer(
    TableCellRenderer renderer, int row, int column)
{

    Component c = super.prepareRenderer(renderer, row, column);
    if(column==2 && row==4)
    {
       Color color= c.getBackground();// use setBackground to set color and get background to get background of a particular cell
       System.out.println("Color of row=0 and column=0 is "+color);

    }

    else
    {
        c.setBackground(Color.GREEN);
        setShowGrid(true);
    }
    return c;

}
};

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM