如何在PdfPTable
列中插入新的空白行。 \n
和n 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()
任何建议都会有所帮助。
答案 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
应该是相同的。