我找到以下代码从现有模板创建excel表格,并使用格式添加数据并将其保存到新文件
POIFSFileSystem fs = new POIFSFileSystem(
new FileInputStream("template.xls"));
HSSFWorkbook wb = new HSSFWorkbook(fs, true);
Will load an xls, preserving its structure (macros included). You can then modify it,
HSSFSheet sheet1 = wb.getSheet("Data"); ...
然后保存。
FileOutputStream fileOut = new FileOutputStream("new.xls");
wb.write(fileOut);
fileOut.close();
这绝对没问题。但我的问题是我现在正在处理新版本的excel。所以我需要开发一个类似的代码来处理新版本的模板。有人可以建议我怎么做?我尝试将HSSWorkbook更改为XSSFWorkbook。但是XSSFWorkbook没有允许我传递布尔值的构造函数。也。当我尝试它时,它会复制数据,但带有数据的行不会保留模板所具有的列的格式。
答案 0 :(得分:8)
这应该可以正常工作(尽管最好使用最新版本的POI来修复所有错误):
Workbook wb = new XSSFWorkbook( OPCPackage.open("template.xlsx") );
Sheet sheet = wb.getSheetAt(0);
// Make changes to the sheet
sheet.getRow(2).getCell(0).setCellValue("Changed value"); // For example
// All done
FileOutputStream fileOut = new FileOutputStream("new.xls");
wb.write(fileOut);
fileOut.close();
如果您对接口进行编码,那么您只需在构造函数中交换HSSF和XSSF,并使代码适用于这两种格式
答案 1 :(得分:1)
我使用过XSSF并且工作正常。
XSSFWorkbook wb = new XSSFWorkbook(new FileInputStream("template.xlsx"));
FileOutputStream fileOut = new FileOutputStream("new.xlsx");
//Sheet mySheet = wb.getSheetAt(0);
XSSFSheet sheet1 = wb.getSheet("Summary");
XSSFRow row = sheet1.getRow(15);
XSSFCell cell = row.getCell(3);
cell.setCellValue("Bharthan");
wb.write(fileOut);
log.info("Written xls file");
fileOut.close();
只需要在maven的pom.xml中添加这个依赖项
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.8-beta4</version>
</dependency>