当前位置: 代码迷 >> java >> Java JTable导出为PDF
  详细解决方案

Java JTable导出为PDF

热度:104   发布时间:2023-08-04 09:17:16.0

目前,我正在使用iText将jTable数据转换为pdf。

private void print() {
    Document document = new Document();
    try {
      PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("jTable.pdf"));

      document.open();
      PdfContentByte cb = writer.getDirectContent();

      cb.saveState();
      Graphics2D g2 = cb.createGraphicsShapes(800, 500);

      Shape oldClip = g2.getClip();
      g2.clipRect(0, 0, 800, 500);

      jTable.print(g2);
      g2.setClip(oldClip);

      g2.dispose();
      cb.restoreState();
    } catch (Exception e) {
      System.err.println(e.getMessage());
    }
    document.close();
  }

我遇到的问题是没有表头,可以说如果由于空间不足而导致表单元格中的数据显示不完整,在pdf中数据也无法完全显示。 是否有其他API可以将jTable模型数据转换为pdf?

是的,另一个API是 。 您可以将模型数据放入DataProvider实例中,并使用该数据来填充模板。 模板将控制表格的外观,Docmosis将填充表格以生成PDF。 您可以将其作为图像来完成,但是使用模板设计表的外观会更好。

  相关解决方案