问题 i have Jtable in Java that inserting data from SQL What i need to do if the Field Nummber 3 is = to 0 i need to set the backround of it to be Red and others is Not Any Help ? NoSelect: WithSelect: Edit : Try to use a different method to change the color using TableCellRenderer RederColer = (JTable table, Object value, boolean isSelected, boolean hasFocus, int row1, int column) -> { if (table.getModel().getValueAt(row, 2).equals("0")) { setForeground(Color.RED); } else { setForeground(Color