Как установить цвет строк таблицы iText pdf в java
я генерирую pdf-файл из базы данных с помощью библиотеки itext pdf.Теперь мне нужно, чтобы я показал альтернативные строки таблицы pdf в другом цвете, как цвет зебры (серый и белый) но я не знаю, как это сделать...
вот мой код..
PdfPTable table = new PdfPTable(10);
table.setTotalWidth(100);
table.setWidthPercentage(100);
while (rs.next()) {
table.addCell(rs.getString("date"));
table.addCell(rs.getString("time"));
table.addCell(rs.getString("source"));
table.addCell(rs.getString("destination"));
table.addCell(rs.getString("extension"));
}
пожалуйста, помогите мне. Спасибо заранее.
2 ответов
boolean b = true;
for(PdfPRow r: table.getRows()) {
for(PdfPCell c: r.getCells()) {
c.setBackgroundColor(b ? BaseColor.GREY : BaseColor.WHITE);
}
b = !b;
}
Я делаю следующее iText 7
Table table = ...
int NUMBER_OF_ROWS = ...
Cell cell = null;
boolean condition = true;
for (int i = 0; i < NUMBER_OF_ROWS; i++) {
cell = new Cell().add(new Paragraph("Column 1"));
cell.setBackgroundColor(condition ? Color.GREY: Color.WHITE);
table.addCell(cell);
cell = new Cell().add(new Paragraph("Column 2"));
cell.setBackgroundColor(condition ? Color.GREY : Color.WHITE);
table.addCell(cell);
cell = new Cell().add(new Paragraph("Column 3"));
cell.setBackgroundColor(condition ? Color.GREY : Color.WHITE);
table.addCell(cell);
condition = !condition;
}