可能重复:
更改 JTable 单元格颜色
我必须在 jtable 中设置某些特定单元格的颜色,但是当我编写以下代码时,整个表格都是彩色的
Component cell=(Component) jTable2.getCellRenderer(0,0);
cell.setBackground(Color.BLUE);
在这种情况下,只有 (0,0) 应该被着色。
可能重复:
更改 JTable 单元格颜色
我必须在 jtable 中设置某些特定单元格的颜色,但是当我编写以下代码时,整个表格都是彩色的
Component cell=(Component) jTable2.getCellRenderer(0,0);
cell.setBackground(Color.BLUE);
在这种情况下,只有 (0,0) 应该被着色。