用java创建一个库系统项目我已经根据字符串改变了颜色的行,但它们只在字符串发生变化时才会改变,并且在启动时不会检测到正确的字符串。
以下是我点击jMenu项目以显示图书时的代码:
public void displayBooks() {
// headers for the table
String[] columns = new String[] { "ISBN", "Title", "Author", "Publisher", "Pub Date", "Status" };
Object[][] data = new Object[booksList.size()][6];
for (int i = 0; i < booksList.size(); i++) {
Book book = booksList.get(i);
data[i][0] = book.getIsbn();
data[i][1] = book.getTitle();
data[i][2] = book.getAuthor();
data[i][3] = book.getPublisher();
data[i][4] = book.getPudDate();
data[i][5] = book.getStatus();
System.out.println(book.getStatus());
}
table = new JTable(data, columns);
table.setDefaultRenderer(Object.class, new MyCellRenderer());
this.getContentPane().removeAll();
TableColumn tableStatus = table.getColumnModel().getColumn(5);
JComboBox<String> comboBox = new JComboBox<String>();
comboBox.addItem("Available");
comboBox.addItem("Unavailable");
tableStatus.setCellEditor(new DefaultCellEditor(comboBox));
this.getContentPane().add(new JScrollPane(table));
this.revalidate();
}
现在我的细胞渲染器:
public class MyCellRenderer extends javax.swing.table.DefaultTableCellRenderer {
public java.awt.Component getTableCellRendererComponent(javax.swing.JTable table, java.lang.Object value,
boolean isSelected, boolean hasFocus, int row, int column)
{
final java.awt.Component cellComponent = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
Object rowValue = table.getValueAt(row, 5);
Object[][] data = new Object[booksList.size()][6];
for (int i = 0; i < booksList.size(); i++) {
Book book = booksList.get(i);
data[i][0] = book.getIsbn();
data[i][1] = book.getTitle();
data[i][2] = book.getAuthor();
data[i][3] = book.getPublisher();
data[i][4] = book.getPudDate();
data[i][5] = book.getStatus();
System.out.println(book.getStatus());
if (rowValue == "Unavailable"){
cellComponent.setForeground(Color.BLACK);
cellComponent.setBackground(Color.red);;
}
else{
cellComponent.setBackground(Color.white);
cellComponent.setForeground(Color.black);
}
if(isSelected){
cellComponent.setForeground(table.getSelectionForeground());
cellComponent.setBackground(table.getSelectionBackground());
}
}
return cellComponent;
}
}
所以对于夏天来说,那些行有&#34;不可用&#34;在最后一行确实变为红色,但只有在表加载后才更改,而不是在加载时。
任何想法。谢谢。 :)
答案 0 :(得分:1)
首先不要使用&#34; ==&#34;用于字符串比较。相反,您应该使用String.equals(...)
方法:
if ("Unavailable".equals( rowValue.toString() )
接下来,您的渲染器代码完全错误。渲染器一次渲染单个单元格。因此,如果您有5行数据,则渲染器将被调用30次,因为您可以使用6列数据。
我建议您在论坛中搜索扩展DefaultTableCellRenderer
的其他示例,然后修改这些示例。
但是,创建自定义渲染器的一个问题是,您需要为表中的每种类型的数据创建自定义渲染器。例如,&#34; date&#34;通常由自定义日期渲染器呈现,而不是字符串渲染器,因此可以合理地格式化数据。
因此,您可能需要查看提供替代解决方案的Table Row Rendering,而不是创建多个渲染器。