0

我想在特定JTable单元格中显示一个图标,并且在整个列的单元格中没有相同的图标。

4

1 回答 1

1

假设您已经完成研究并知道如何使用自定义单元格渲染器,那么基本概念很简单。

public Component getTableCellRendererComponent(
                        JTable table, Object color,
                        boolean isSelected, boolean hasFocus,
                        int row, int column) {
    // Prepare renderer as usual...

    // Check to see if the current row/column is within 
    // the acceptable range...
    // It would be usful if this information was coming from
    // some kind of model
    if (row == iconRow && column == iconColumn) {
        // Apply the icon for this cell renderer
    }
    return this;
}
于 2013-08-27T01:11:57.213 回答