0
我需要在第一列中填入一個數字,在第二列填寫數組中的某些數據。itext填充表
所以它看起來像:
1 | Data1
2 | Data2
3 | Data3
什麼是添加此數據的最佳方式。
Usualy你做這樣的事情:
Table table = new Table(3);
table.setWidth(100);
table.setDefaultVerticalAlignment(Element.ALIGN_TOP);
table.setCellsFitPage(true);
table.setPadding(2);
table.setSpacing(0);
for (int i = 1; i <= 6; i++) {
Cell cell = new Cell("Data " + i);
table.addCell(cell); }
然後你喜歡的東西:
數據1 |數據2 |數據3
數據4 |數據5 |數據6
是否有特定的方式來填充選定的單元格或我看錯了。
這只是他的第一個問題,他也必須做排隊的事情。 – twain249 2012-04-16 20:37:52
看到我張貼後,只是編輯它。 – 2012-04-16 20:39:05
你應該只去3在循環 – twain249 2012-04-16 20:39:42