我需要在第一列中填写一个数字,在第二列中填写数组中的某些数据。
所以它看起来像:
1 | 数据1
2 | 数据2
3 | 数据3
添加此数据的最佳方法是什么。
通常你会做类似的事情:
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
是否有特定的方法来填充选定的单元格或者我看错了。