iText,在PdfPTable列中插入新的空白行

时间:2015-07-23 15:28:58

标签: java itext pdfptable

如何在PdfPTable列中插入新的空白行。 \nn number of spaces对我来说并没有成功。这是我正在使用的java代码。

chtbc_report1_table.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
    {"H.B.G", "Some Value", "lbs/kg", "Adult M : 120lbs \n Adult F : 90lbs"},
    .....
    .....
    //Other rows
    },
new String [] {
    "Investigation", "Result", "Unit", "Weight"
}
));

我想在{"成人M:120磅new line成人F:90磅"

之间加**\n**

更新

这是我用来创建PdfPTable

的代码
document.open();

    PdfPTable pdfTable = new PdfPTable(chtbc_report1_table.getColumnCount());    
    for (int rows = 0; rows < chtbc_report1_table.getRowCount(); rows++) {
        for (int cols = 0; cols < chtbc_report1_table.getColumnCount(); cols++) {
            pdfTable.addCell(chtbc_report1_table.getModel().getValueAt(rows, cols).toString());

        }
    }
    float[] columnWidths_pdfTable = new float[]{30f, 25f, 40f, 50f};
    pdfTable.setWidths(columnWidths_pdfTable);
    document.add(pdfTable);

document.close()

任何建议都会有所帮助。

1 个答案:

答案 0 :(得分:1)

哦,确实很简单。尝试以下相同的工作: -

表格内容

jTable1.setModel(new javax.swing.table.DefaultTableModel(
        new Object [][] {
            {"Lorem Ipsum", "Next Line here \n, Another new line\n, Two new lines\n\nI will end here"},
            {"Lorem Ipsum", "Another cell to demonstrate \n\n\n\n4 New lines above and two below \n\n"}
        },
        new String [] {
            "Text", "Long Text"
        }
    ));

如果有效,请告诉我。 PdfPtable应该是相同的。