0

我在一个程序中实现了一个名为 scrTbl 的 JTable,我希望能够根据一个名为“up”的外部布尔变量来改变该表的一列中的文本颜色。我与这项工作相关的代码如下。

TableColumn tcol = scrTbl.getColumnModel().getColumn(9);
tcol.setCellRenderer(new CustomTableCellRenderer());

public class CustomTableCellRenderer extends DefaultTableCellRenderer
{
    @Override
    public Component getTableCellRendererComponent (JTable table,    
    Object obj, boolean isSelected, boolean hasFocus, int row, int 
    column)
    {
        Component cell = super.getTableCellRendererComponent(table, 
          obj, isSelected, hasFocus, row, column);

        if (up && (row == nmbrStocks))
        {
            cell.setForeground(Color.green);
        }
        if ((!up) && (row == nmbrStocks))
        {
            cell.setForeground(Color.red);
        }
        return cell;
    }//Component
} //class getTableCell...

关键是根据 up 的值将第 9 列和特定行(索引 nmbrStocks)的文本颜色设置为绿色或红色。

但是当它运行时,它将所有文本设置为绿色。每次写入第 9 列中的单元格时是否调用渲染器,或者协议是什么?

提前感谢您的帮助。

4

1 回答 1

0

Since you only want to modify one column, adjust your code to specify the column as well as the row

    if (row == nmbrStocks && column == the_desired_column_you_wish_to_change)
    {
      if (up){
        cell.setForeground(Color.green);
      }else{
        cell.setForeground(Color.red);
      }
    }
于 2010-07-09T20:30:37.420 回答