我试图从一个具有价值的清单的地图上提一个表格。 每个清单有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;
}
}
我确信,数据列在地图上,但表格似乎空洞。 任何建议?