简体   繁体   English

如何在java中改变JTable中单个单元格的背景颜色?

[英]how to change background color of individual cell in JTable in java?

I search in the table, when i find a match i want to change a bg color of that cell. 我在表中搜索,当我找到匹配项时,我想要更改该单元格的bg颜色。 I did as below but still can't fix it? 我做了如下,但仍然无法修复它? Can any body help to fix this problem? 任何人都可以帮助解决这个问题吗?

public class SearchTable extends JTable {
JTable table;
JTextField textField;

public SearchTable(JTable table, JTextField textField) {
    this.table = table;
    this.textField = textField;

    textField.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            search();
        }
    });

    textField.getDocument().addDocumentListener(new DocumentListener() {
        public void insertUpdate(DocumentEvent e) {
            search();
        }
        public void removeUpdate(DocumentEvent e) {
            search();
        }
        public void changedUpdate(DocumentEvent e) {
            search();
        }
    });
}

private void search() {
    String target = textField.getText();
    for (int row = 0; row < table.getRowCount(); row++)
        for (int col = 0; col < table.getColumnCount(); col++) {
            String next = (String) table.getValueAt(row, col);
            if (next.equals(target)) {
                changeBackgroundColor(row, col);
                return;
            }
        }
    table.repaint();
}

private void changeBackgroundColor(int row, int col) {
    table.setColumnSelectionAllowed(true);
    table.setRowSelectionAllowed(true);
    boolean toggle = false;
    boolean extend = false;
    table.changeSelection(row, col, toggle, extend);
    //first atempt sets bg color for all cells, it is not OK
    //table.setSelectionBackground(Color.green);

    //second atempt getting no result
    table.getCellEditor(row,col).getTableCellEditorComponent(table,table.getValueAt(row,col),true,row,col).setForeground(Color.red);

    //3th atempt getting no result
    //Component c = table.getCellRenderer(row, col).getTableCellRendererComponent(table, table.getValueAt(row, col), true, true, row, col);
    //c.setForeground(Color.red);

    //4th atempt getting no result
    //DefaultTableCellRenderer renderer = (DefaultTableCellRenderer) table.getCellRenderer(row, col).getTableCellRendererComponent(table, table.getValueAt(row, col), true, true, row, col).;
      //renderer.setBorder(new LineBorder(Color.red));
}

   }

You can use XxxCellRenderer , better and easiest is to use prepareRenderer() 你可以使用XxxCellRenderer ,更好最简单的方法是使用prepareRenderer()

for correct code you have to override or test inside if-else follows patameters 对于正确的代码,你必须覆盖或测试if-else跟随patameters

  • isSelected isSelected

  • hasFocus hasFocus

  • column

  • row

Please to check answers and one question about similair issue, there are two simple ways, sorry I'm in FRI trafic, brrrrr 请检查答案和一个问题有关similair问题上,有两种简单的方法,对不起,我在周五TRAFIC,brrrrr

You need to set the cell renderer to the column first - 您需要先将单元格渲染器设置为列 -

col.setCellRenderer( new TableCellRenderer() {
public Component getTableCellRendererComponent( JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column ) 
                {
                    Component cell = centerRenderer.getTableCellRendererComponent( table, value, isSelected, hasFocus, row, column );
    cell.setForeground(Color.green);
}
});

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

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