我是Java开发人员。我正在尝试使用Apache POI库的xlsx
类编写一个大SXSSFWorkbook
文件(Excel)。
我没有选择写大文件,因为有超过200000行。 但我需要使用一些公式或vlookup与外部表。当我使用时:
cell.setCellFormula(formulasString);
但它不起作用,它返回0值。
问:如何在SXSSFWorkbook中使用公式?
我的代码 -
import java.io.FileOutputStream;
import junit.framework.Assert;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.FormulaEvaluator;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.util.CellReference;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
public class Demo2
{
public static void main(String[] args) throws Throwable
{
SXSSFWorkbook wb = new SXSSFWorkbook(100); // keep 100 rows in memory, exceeding rows will be flushed to disk
FormulaEvaluator fEvaluator=wb.getCreationHelper().createFormulaEvaluator();
Sheet sh = wb.createSheet();
for(int rownum = 0; rownum < 100000; rownum++)
{
Row row = sh.createRow(rownum);
for(int cellnum = 0; cellnum < 10; cellnum++)
{
Cell cell = row.createCell(cellnum);
String address = new CellReference(cell).formatAsString();
cell.setCellValue(address);
}
Cell cell1 = row.createCell(12);
cell1.setCellType(Cell.CELL_TYPE_FORMULA);
String sF = "SUM(10,20,30)";
cell1.setCellFormula(sF);
fEvaluator.clearAllCachedResultValues();
Cell cell2 = row.createCell(13);
cell2.setCellValue("Test");
}
// Rows with rownum < 900 are flushed and not accessible
for(int rownum = 0; rownum < 99900; rownum++)
{
Assert.assertNull(sh.getRow(rownum));
}
// ther last 100 rows are still in memory
for(int rownum = 99900; rownum < 100000; rownum++)
{
Assert.assertNotNull(sh.getRow(rownum));
}
FileOutputStream out = new FileOutputStream("sxssf.xlsx");
wb.write(out);
out.close();
// dispose of temporary files backing this workbook on disk
wb.dispose();
System.out.println("Done");
}
}
请尽可能给我建议。 感谢。
答案 0 :(得分:0)
不幸的是,SXSSFWorkbook不支持3.12版中的公式。我发现这在代码中也是如此,但是,我没有看到任何有关此问题的官方POI文档。
POI documentation for formula evaluation有一些示例代码,用于在创建单元格后评估公式。它说它适用于XSSFWorkbook和HSSFWorkbook实现,但没有提到SXSSFWorkbook。
我尝试在示例代码中使用SXSSFWorkbook并收到异常。看一下例外情况,尽管未在POI文档中明确说明,但SxSSFWorkbook无法评估该公式。
Unexpected type of cell: class org.apache.poi.xssf.streaming.SXSSFCell. Only XSSFCells can be evaluated.
答案 1 :(得分:0)
根据您的问题以及评论中提供的信息,您的问题是您使用过旧版本的Apache POI。这就是您在尝试评估SXSSF单元格时获得异常的原因。作为detailed towards the end of the Formula Evaluation documentation,对于SXSSF公式评估,您需要使用3.13 beta 2或更高版本。
另一个潜在的问题 - 公式评估不仅需要具有公式的单元格在内存中,还需要它所引用的任何其他单元格以及它们引用的任何单元格。这可能会导致问题,具体取决于vlookup尝试调用的区域的宽度。 vlookup所需的所有单元必须在当前窗口中可用,而不是刷新到磁盘。因此,您可能需要简化公式和/或增加窗口大小,以确保每个vlookup单元格可以在评估时找到它所依赖的所有单元格的值
答案 2 :(得分:0)
wb.setForceFormulaRecalculation(真);
在执行wb.write(out)之前设置它 你打开文件我excel..excel重新计算,你得到计算输出