如何使用Java从jTable中创建包含多个行和页面的pdf文档?

时间:2019-06-25 04:17:45

标签: java mysql jtable itext pdfptable

我想使用iText 5和Java将jTable(tblinvoice)(16列)数据导出到A4大小的pdf文档中。 pdf可能有多个页面,每个页面都应该有表格标题和页码。

我有一个jTable有16列。我尝试使用itext 5,我能够在pdf文档(A4大小)的一页内得到结果。如果jTable有多行(用于2,3页),那么我会收到nullPointerException消息。

`文件dc =新文件(PageSize.A4.rotate());             PdfWriter.getInstance(dc,new FileOutputStream(path + allin));             dc.open();

        PdfPTable table = new PdfPTable(17);
        table.setHeaderRows(1);
        table.setSplitLate(false);
        table.setSplitRows(false);
        table.setComplete(false);

        for (int q = 0; q < 1; q++) { //header setter
            table.addCell("No");
            table.addCell("Invoice No");
            table.addCell("Customer Name");
            table.addCell("Sales Date");
            table.addCell("Sales Time");
            table.addCell("Total Item");
            table.addCell("Total Price");
            table.addCell("Discount");
            table.addCell("Total Payable");
            table.addCell("Paid Amount");
            table.addCell("Balance");
            table.addCell("Payment Type");
            table.addCell("Hold Id");
            table.addCell("Return Note");
            table.addCell("Hold Note");
            table.addCell("Invoice Status");
            table.addCell("User ID / Name");

        }

        for (int i = 1; i < tblinvoice.getRowCount(); i++) { //cell 

            String id = tblinvoice.getValueAt(i, 0).toString();
            String cn = tblinvoice.getValueAt(i, 1).toString();
            String sd = tblinvoice.getValueAt(i, 2).toString();
            String st = tblinvoice.getValueAt(i, 3).toString();
            String ti = tblinvoice.getValueAt(i, 4).toString();
            String tp = tblinvoice.getValueAt(i, 5).toString();
            String dt = tblinvoice.getValueAt(i, 6).toString();
            String tl = tblinvoice.getValueAt(i, 7).toString();
            String pa = tblinvoice.getValueAt(i, 8).toString();
            String bn = tblinvoice.getValueAt(i, 9).toString();
            String pt = tblinvoice.getValueAt(i, 10).toString();
            String hi = tblinvoice.getValueAt(i, 11).toString();
            String rn = tblinvoice.getValueAt(i, 12).toString();
            String hn = tblinvoice.getValueAt(i, 13).toString();
            String is = tblinvoice.getValueAt(i, 14).toString();
            String ui = tblinvoice.getValueAt(i, 15).toString();

            table.addCell("" + i);
            table.addCell(id);
            table.addCell(cn);
            table.addCell(sd);
            table.addCell(st);
            table.addCell(ti);
            table.addCell(tp);
            table.addCell(dt);
            table.addCell(tl);
            table.addCell(pa);
            table.addCell(bn);
            table.addCell(pt);
            table.addCell(hi);
            table.addCell(rn);
            table.addCell(hn);
            table.addCell(is);
            table.addCell(ui);

        }
        dc.newPage();
        table.setComplete(true);
        table.setSplitLate(false);
        dc.add(table);
        dc.close();`

我希望拥有多行pdf文档(A4尺寸)。但是我得到了nullPointerException消息。和pdf保存,但无法打开!

0 个答案:

没有答案