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