iText-奇怪的列-/使用ColumnText更改页面的行为

iText-奇怪的列-/使用ColumnText更改页面的行为,itext,Itext,我对iText非常陌生,并试图实现以下目标: 从本地hd读取文本文件列表 将文件的文本排列在两列pdf文件中 在每个文本之前添加连续编号的索引 我从MovieColumns1示例()开始,最后得到以下代码: final float[][] COLUMNS_COORDS = { { 36, 36, 296, 806 }, { 299, 36, 559, 806 } }; Document document = new Document(PageSize.A4); Pd

我对iText非常陌生,并试图实现以下目标:

  • 从本地hd读取文本文件列表
  • 将文件的文本排列在两列pdf文件中
  • 在每个文本之前添加连续编号的索引
我从MovieColumns1示例()开始,最后得到以下代码:

    final float[][] COLUMNS_COORDS = { { 36, 36, 296, 806 }, { 299, 36, 559, 806 } };

    Document document = new Document(PageSize.A4);
    PdfWriter writer = PdfWriter.getInstance(document, resultFile);
    document.open();

    ColumnText ct = new ColumnText(writer.getDirectContent());
    ct.setSimpleColumn(COLUMNS_COORDS[0][0], COLUMNS_COORDS[0][1],
        COLUMNS_COORDS[0][2], COLUMNS_COORDS[0][3]);

    File textDir = new File("c:/Users/raddatz/Desktop/123/texts/");
    File[] files = textDir.listFiles();

    int i = 1;
    int column = 0;
    for (File file : files) {
        String text = FileUtils.readFileToString(file, "UTF-8");
        float yLine = ct.getYLine();
        System.out.println("adding '" + file.getName() + "'");

        PdfPCell theText = new PdfPCell(new Phrase(text, new Font(Font.HELVETICA, 10)));
        theText.setBorder(Rectangle.NO_BORDER);
        theText.setPaddingBottom(10);
        PdfPCell runningNumber = new PdfPCell(new Phrase(new DecimalFormat("00").format(i++), new Font(
            Font.HELVETICA, 14, Font.BOLDITALIC,
            new Color(0.7f, 0.7f, 0.7f))));
        runningNumber.setBorder(Rectangle.NO_BORDER);
        runningNumber.setPaddingBottom(10);
        PdfPTable table = new PdfPTable(2);
        table.setWidths(new int[] { 12, 100 });
        table.addCell(runningNumber);
        table.addCell(theText);
        ct.addElement(table);
        int status = ct.go(true);
        if (ColumnText.hasMoreText(status)) {
            column = Math.abs(column - 1);
            if (column == 0) {
                document.newPage();
                System.out.println("inserting new page with size :" + document.getPageSize());
            }
            ct.setSimpleColumn(
                COLUMNS_COORDS[column][0], COLUMNS_COORDS[column][1],
                COLUMNS_COORDS[column][2], COLUMNS_COORDS[column][3]);
            yLine = COLUMNS_COORDS[column][3];
            System.out.println("correcting yLine to: " + yLine);
        } else {
            ct.addElement(table);
        }
        ct.setYLine(yLine);
        System.out.println("before adding: " + ct.getYLine());
        status = ct.go(false);
        System.out.println("after adding: " + ct.getYLine());
        System.out.println("--------------------------------");
    }

    document.close();
在这里您可以看到结果:

查看结果PDF的第一页,我认为一切都很顺利

但在第二页,您可以看到问题:

  • 文本#31未完全显示(第一行+索引被剪切/不在可见区域)
  • 文本#46未完全显示(前三行+索引被剪切/不在可见区域)
在第三页,一切似乎又恢复正常了。我在这里真的迷路了

--更新(2013-03-14)--

我现在已经分析了PDF的内容。问题不在于内容显示在不可见的区域,而在于内容根本不存在于pdf中。内容中缺少的部分正是适合上一列/页的部分。因此,ColumnText.go(true)似乎在操作之前addElement()传递的对象。有人能证实这一点吗?如果是:我能做些什么

--结束更新(2013-03-14)--

期待您的回复

问候,,
sven已解决!一旦ColumnText指示某个表不适合当前列,我就使用ColumnText的新实例重新初始化ct,然后再次添加该表

换言之: ColumnText的每个实例正好处理文档中的一列

if (ColumnText.hasMoreText(status) || mediaPoolSwitch) {
  column = Math.abs(column - 1);
  if (mediaPoolSwitch) {
      currentMediaPool = mediapool;
      column = 0;
  }
  if (column == 0) {
      document.newPage();
      writeTitle(writer.getDirectContent(), mediapool.getName());
  }
  ct = new ColumnText(writer.getDirectContent());
  ct.addElement(table);
  ct.setSimpleColumn(
      COLUMNS_COORDS[column][0], COLUMNS_COORDS[column][1],
      COLUMNS_COORDS[column][2], COLUMNS_COORDS[column][3]);
  yLine = COLUMNS_COORDS[column][3];
  LOG.debug("correcting yLine to: " + yLine);
} else {
  ct.addElement(table);
}
ct.setYLine(yLine);
ct.go();

在这里你可以找到我的测试文本文件:不幸的是,这是我找到的唯一处理方法