我正在尝试根据表中的一列来为表中每一行的文本着色。我很难掌握渲染器的概念,我尝试了几种不同的渲染器,但似乎并不了解它们的作用。
我正在尝试将我们的讲师提供给我们的某个API加载到表格模型中的十大赛车手,但是根据赛车的性别(由getCategory()方法返回的颜色对每一行进行着色) Finisher / Racer对象)。
仅供参考,DataTable是我们的讲师写的对象。它基本上是一个2D数组对象。
public void showRacers(DefaultTableModel tblModel,
@SuppressWarnings("rawtypes") JList listOfRaces) {
// Clear the model of any previous searches
tblModel.setRowCount(0);
// Initialize an object to the selected city
CityNameAndKey city = (CityNameAndKey) listOfRaces.getSelectedValue();
// Get the runners for this city
DataTable runners = this.getRunners(city);
// Set the column headers
this.setColumnHeaders(tblModel);
// Make an array list of object Finisher
ArrayList<Finisher> finisherList = new ArrayList<Finisher>();
// Make an array that holds the data of each finisher
Object[] finisherData = new Object[6];
// Make a finisher object
Finisher f;
for (int r = 0; r < 10; r++) {
// Assign the data to the finisher object
finisherList.add(f = new Finisher(runners.getCell(r, 0), runners
.getCell(r, 1), runners.getCell(r, 2), runners
.getCell(r, 3), runners.getCell(r, 4), runners
.getCell(r, 5)));
// Add the data into the array
finisherData[0] = f.getPosition();
finisherData[1] = f.getBibNo();
finisherData[2] = f.getTime();
finisherData[3] = f.getGender();
finisherData[4] = f.getCategory();
finisherData[5] = f.getRuns();
// Put it into the table model
tblModel.addRow(finisherData);
}
}
我非常感谢一个解释,而不仅仅是我的问题的答案。对答案的指导会很好,有些代码会非常有用,但请不要:“你应该写下这个:ten lines of code I don't get
非常感谢! :)
答案 0 :(得分:3)
使用TableCellRenderer只允许您为一列着色。每列必须有一个。一种更简单的方法是覆盖JTable中的prepareRenderer(...)
以为整行着色。