2015-01-05 2 views

답변

2

당신은 PdfCell 배열을 사용하여이 작업을 수행 할 수 있습니다 :

ncols = 6; // number of columns 
nrows = 8; // number of rows 
Pdfcell[][] cells = new PdfCell[nrows][ncols]; 

// To create the table cells 
for(int icol=0; icol<ncols; icol++) { 
    for(int irow=0; irow<nrows; irow++) { 
     cells[irow][icol] = new PdfCell(new Phrase(
       "Col:" + icol + ", Row:" + irow)); 
    } 
} 

// To add the cells to table 
for(int irow=0; irow<nrows; irow++) { 
    for(int icol=0; icol<ncols; icol++) { 
     table.addCell(cells[irow][icol]); 
    } 
}