如何隐藏和显示带有可选内容的表

时间:2016-08-04 08:13:24

标签: java itext

我使用iText Library创建可排序表。为此,我试图隐藏/显示在相同位置创建的表。我读过这可以通过可选内容来实现。任何人都可以帮我显示/隐藏带有可选内容的表吗?

1 个答案:

答案 0 :(得分:1)

看看SortingTable示例。在此示例中,我们将三个重叠表添加到同一位置的文档,但由于每个表属于一个无线电组的不同层,因此只能同时显示一个表。您可以通过单击列标题切换到另一个表。

看看optionaltables.pdf。默认视图如下所示:

enter image description here

但是如果你单击“第2列”这个词,它看起来像这样:

enter image description here

这是怎么做到的?

首先我们创建OCG:

ArrayList<PdfLayer> options = new ArrayList<PdfLayer>();
PdfLayer radiogroup = PdfLayer.createTitle("Table", writer);
PdfLayer radio1 = new PdfLayer("column1", writer);
radio1.setOn(true);
options.add(radio1);
radiogroup.addChild(radio1);
PdfLayer radio2 = new PdfLayer("column2", writer);
radio2.setOn(false);
options.add(radio2);
radiogroup.addChild(radio2);
PdfLayer radio3 = new PdfLayer("column3", writer);
radio3.setOn(false);
options.add(radio3);
radiogroup.addChild(radio3);
writer.addOCGRadioGroup(options);

然后我们使用ColumnText在同一位置添加3个表:

PdfContentByte canvas = writer.getDirectContent();
ColumnText ct = new ColumnText(canvas);
for (int i = 1; i < 4; i++) {
    canvas.beginLayer(options.get(i - 1));
    ct.setSimpleColumn(new Rectangle(36, 36, 559, 806));
    ct.addElement(createTable(i, options));
    ct.go();
    canvas.endLayer();
}

表格创建如下:

public PdfPTable createTable(int c, List<PdfLayer> options) {
    PdfPTable table = new PdfPTable(3);
    for (int j = 1; j < 4; j++) {
        table.addCell(createCell(j, options));
    }
    for (int i = 1; i < 4; i++) {
        for (int j = 1; j < 4; j++) {
            table.addCell(createCell(i, j, c));
        }
    }
    return table;
}

我们希望标题中的单词可以点击:

public PdfPCell createCell(int c, List<PdfLayer> options) {
    Chunk chunk = new Chunk("Column " + c);
    ArrayList<Object> list = new ArrayList<Object>();
    list.add("ON");
    list.add(options.get(c - 1));
    PdfAction action = PdfAction.setOCGstate(list, true);
    chunk.setAction(action);
    return new PdfPCell(new Phrase(chunk));
}

在此POC中,表格之间的差异与您想要的不同。您希望以不同方式对内容进行排序。对于这个简单的例子,我介绍了一种不同的背景颜色:

public PdfPCell createCell(int i, int j, int c) {
    PdfPCell cell = new PdfPCell();
    cell.addElement(new Paragraph(String.format("row %s; column %s", i, j)));
    if (j == c) {
        cell.setBackgroundColor(BaseColor.LIGHT_GRAY);
    }
    return cell;
}