我创建了一个带有表格的PDF创建者。我有这个代码
PdfPTable titlutabel = new PdfPTable(2); // Title of table
titlutabel.addCell ("Title1");
titlutabel.addCell ("Title2");
PdfPTable tabel = new PdfPTable(2); // content
Phrase p = new Phrase (Nr1);
PdfPCell cell = new PdfPCell(p);
tabel.addCell(C1);
cell.setNoWrap(false);
tabel.addCell(cell);
p = new Phrase(Nr2);
cell = new PdfPCell(p);
tabel.addCell(C2);
cell.setNoWrap(false);
tabel.addCell(cell);
p = new Phrase(Nr3);
cell = new PdfPCell(p);
tabel.addCell(C3);
cell.setNoWrap(false);
tabel.addCell(cell);
p = new Phrase(Nr4);
cell = new PdfPCell(p);
tabel.addCell(C4);
cell.setNoWrap(false);
tabel.addCell(cell);
到目前为止所有商品..但是当我打开pdf文件时,我想只选择一列..然后是第二列(第一列Title1列和第二列Title2列)。 Nr1 / Nr2 / etc和C1 / C2 /等是字符串。 如何只选择一列或..我可以简化此代码吗?