我正在使用iText库以pdf文件的表格格式打印某些数据。我有11列,可以有多行。在为每列的标题创建标题之后,如何在pdfptable中创建新行,以便可以将实际数据打印在单独的行上。
最佳答案
在PdfPTable的构造函数中,您可以指定一行中的列数。
PdfPTable table = new PdfPTable(4) // 4 Columns
PdfPCell cell;
cell = new PdfPCell( new Phrase("Cell with colspan of 4") ) ;
cell. setColspan(4) ; // an entire row
anotherCell = new PdfPCell( new Phrase("Cell with colspan of 4") );
anotherCell.setColspan(4); // a second row
如您所见,当您到达当前行的colspan时,会创建一个新行。
关于java - pdfptable中的新行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4891578/