Apache POI(3.8 最终版本)有问题。
我的任务:根据基本 xls/xlsx 文档中的数据创建一些 xls/xlsx 文件。
首先,我尝试通过CellStyle.cloneFrom
. 它看起来不错,但是当我打开 xlsx 文件 ( xl/styles.xml
) 时,我发现它的样式(和字体)数量与我的源文档不同。
我可以通过 POI API 创建源 xls/xlsx 文档的完整副本吗?
创建基础文档模板并创建新文档的代码:
public WorkbookTemplate constructTemplate(Workbook wb)
{
//copy styles from template
styles = new HashSet<CellStyle>(wb.getNumCellStyles());
for (short i = 0; i < wb.getNumCellStyles(); i++)
{
styles.add(wb.getCellStyleAt(i));
}
System.out.println(wb.getNumCellStyles());
for (int i = 0; i < wb.getNumberOfSheets(); i++)
{
Sheet sheet = wb.getSheetAt(i);
SheetTemplate sheetTemplate = new SheetTemplate(this);
sheets.add(sheetTemplate.constructTemplate(sheet));
}
return this;
}
public Workbook applyTemplate(Workbook wb, JXPathContext context)
{
preProcessOfWorkBook(wb);
System.out.println(wb.getNumCellStyles());
for (SheetTemplate sheetTemplate : sheets)
{
Sheet newSheet = wb.createSheet(sheetTemplate.getSheetName());
sheetTemplate.applyTemplate(newSheet, context);
}
return wb;
}
public void preProcessOfWorkBook(Workbook wb)
{
//Transfer of CellStyles
styleConvert = new HashMap<CellStyle, CellStyle>(styles.size());
for (CellStyle style : styles)
{
CellStyle bufStyle = wb.createCellStyle();
bufStyle.cloneStyleFrom(style);
styleConvert.put(style, bufStyle);
}
}
它是 WorkbookTemplate 类的一部分,constructTemplate - 创建它,applyTemplate - 将数据从模板传输到 Workbook 实例