gpt4 book ai didi

java - iText : how to refactor code to avoid multiple addCell in method

转载 作者:行者123 更新时间:2023-12-02 05:11:45 24 4
gpt4 key购买 nike

我目前正在使用 iText 生成 .pdf。我的方法之一是创建、格式化单元格并将其添加到 Table 对象,但此特定表有许多单元格(20-30),并且该方法本身已显着增长。

该方法的结构如下:

/*create cells*/
Cell c1 = new Cell(new Paragraph("text1", textFont));
//...and so on for 20+ cells

/*format cell with custom method formatCell()*/
formatCell(c1, false);
//...and so on for 20+ cells

/*add cells to table object*/
table1.addCell(c1);
//...and so on again for 20+ cells

有没有一种方法可以将单元格添加到表中,而无需使用 addCell 语句流?

编辑:我应该提到的(抱歉)是 formatCell 将采用一个 boolean 参数,该参数将根据每个单元格进行更改

最佳答案

您可以将 Cell 添加到 ArrayList 中,然后迭代 List

例如:

List<Cell> cells = new ArrayList<Cell>();
cells.add(new Cell(new Paragraph("text1", textFont)));
//...and so on for 20+ cells

for(Cell cell:cells){
formatCell(cell, false);
table1.addCell(cell);
}

要创建单元格列表,您可以创建这样的方法

private static List<Cell> createCells(Font textFont, String... texts){
List<Cell> cells = new ArrayList<Cell>();
for(String text: texts){
cells.add(new Cell(new Paragraph(text, textFont)));
}
}

关于java - iText : how to refactor code to avoid multiple addCell in method,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27277565/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com