-2

我正在尝试从以列表为值的地图开始制作表格。每个列表中有 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; 
    }
}

我确定数据在地图中,但表格似乎是空的。有什么建议么?

4

1 回答 1

3

您的 for 循环不正确:

for ( int i = 1 ; i == map.size() ; i++ ) 

你想要什么

for ( int i = 1 ; i <= map.size() ; i++ ) 
于 2012-05-15T21:56:43.640 回答