6

我正在使用 itext pdf 库从数据库生成 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"));
         }

请帮我。提前致谢。

4

2 回答 2

11
boolean b = true;
for(PdfPRow r: table.getRows()) {
  for(PdfPCell c: r.getCells()) {
    c.setBackgroundColor(b ? BaseColor.GREY : BaseColor.WHITE);
  }
  b = !b;
}
于 2013-11-09T09:23:45.157 回答
0

我做以下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;
}
于 2018-06-26T09:50:55.937 回答