gpt4 book ai didi

启动时的 Java Jtable 行颜色

转载 作者:行者123 更新时间:2023-11-30 06:45:52 25 4
gpt4 key购买 nike

用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;

}
}

总结一下,最后一行中具有“不可用”的行确实​​会更改为红色,但只有在表加载后更改时才会更改,而不是在加载时更改。

任何想法。谢谢。 :)

最佳答案

首先不要使用“==”进行字符串比较。相反,您应该使用 String.equals(...) 方法:

if ("Unavailable".equals( rowValue.toString() )

接下来,您的渲染器代码完全错误。渲染器一次渲染一个单元格。因此,如果您有 5 行数据,则渲染器将被调用 30 次,因为您有 6 列数据。

我建议您在论坛中搜索扩展 DefaultTableCellRenderer 的其他示例,然后修改这些示例。

但是,创建自定义渲染器的一个问题是您需要为表中的每种数据类型创建自定义渲染器。例如,“日期”通常由自定义日期呈现器呈现,而不是字符串呈现器,因此可以合理地格式化数据。

因此,您可能不想创建多个渲染器,而是想看看 Table Row Rendering这提供了替代解决方案。

关于启动时的 Java Jtable 行颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43698651/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com