如何在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()


任何建议都会有所帮助。

最佳答案

哦,确实很简单。尝试以下对我有用的方法:-

表内容

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应该相同。

09-11 13:32