我正在尝试从以列表为值的地图开始制作表格。每个列表中有 2 个字符串
public class Table{
public static PdfPTable createTable( HashMap<Integer,List<String>> map ){
PdfPTable table = new PdfPTable(2); // 2 is the number of columns
for( int i = 1 ; i == map.size() ; i++ ){
PdfPCell leftCell = new PdfPCell(new Paragraph(map.get(i).get(0)));
PdfPCell rightCell = new PdfPCell(new Paragraph(map.get(i).get(1)));
table.addCell( leftCell );
table.addCell( rightCell );
}
return table;
}
}
我确定数据在地图中,但表格似乎是空的。有什么建议么?