java api lib for excel

可选 lib

  • apache POI:java 中最大众的 ,支持 xlsxlsx,提供接口来创建、读写 excel文件。
  • apache openOffice uno
  • JExcel app:这个功能强大,什么都可以做,但是可能收费,而且仅基于 windows + installed excel
  • JExcelAPI:轻量更易用,但似乎仅支持 xls,而且不支持复杂的 range、formular 计算操作。
  • javascript 版本的 JExcel
  • docx4j:其中 xlsx4j 是处理 excel 的,不过看起来功能比较简单。
  • microsoft excel VBA:vba 是微软写的操作 office 软件的语言。所以可以利用这个 vba 写代码……

ref doc:

核心操作支持

lib apache poi apache openoffice JExcelAPI
read/create excel file ✔️ 可以 ✔️
read/write excel cells 1. 获取 sheet,遍历 row,遍历 row cells; 可以 1. 获取 sheet,可以根据 cell 行列数获取(getCell(rowIndex, columnIndex)
compute formula for cells 可以(用 formular evaluator,参见stackoverflow 可以(calculateAll()) 可能可以
write/read named cells of file 可以(workBook.getNamedAt("name"),参见 stackoverflow, 官方文档 可以(namedRange) NO
pros 1. 使用广泛;2. 文档清晰;3. 支持很多复杂需求 1. 似乎功能比 poi 更简易,也更丰富些;2. 可以同时操作 openoffice 和 microoffice;3. 语言支持多,只要使用相应语言的 binding 就可以 1. 简单轻量;2. 接口友好
cons 接口不是很友好,访问起来比较麻烦 1. 文档乱七八糟;2. 采用 uno,领域对象不太一致;3. 必须要安装 openoffice 1. 功能太简单,复杂需求实现不了

核心操作 example(POI)

quick guide

源代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//        load excel
XSSFWorkbook workbook = new XSSFWorkbook(getFile("test.xlsx"));

// get sheet by name
String sheetName = "Product Mix";
XSSFSheet sheet = workbook.getSheet(sheetName);
assertThat(sheet.getSheetName(), is(sheetName));

// get cell by coordinate
XSSFCell tvsetNumber = getCell(sheet, "D4");
assertThat(tvsetNumber.getNumericCellValue(), closeTo(100, 0.1));

// get formula cell by coordinate
XSSFCell total = getCell(sheet, "D13");
assertThat(total.getNumericCellValue(), closeTo(16000, 0.1));

// change cell value
tvsetNumber.setCellValue(200);
assertThat(tvsetNumber.getNumericCellValue(), closeTo(200, 0.1));

// refresh formulas
XSSFFormulaEvaluator.evaluateAllFormulaCells(workbook);
assertThat(total.getNumericCellValue(), closeTo(23500, 0.1));

// write back to file
workbook.write(new FileOutputStream(getFile("update.xlsx")));

// check data updated
XSSFWorkbook updateWorkBook = new XSSFWorkbook(getFile("update.xlsx"));
assertThat(getCell(updateWorkBook.getSheet(sheetName), "D4").getNumericCellValue(), closeTo(200, 0.1));
assertThat(getCell(updateWorkBook.getSheet(sheetName), "D13").getNumericCellValue(), closeTo(23500, 0.1));

// get cell by name
XSSFName test_name = workbook.getName("test_cell_name");
AreaReference areaReference = new AreaReference(test_name.getRefersToFormula(), SpreadsheetVersion.EXCEL2007);

CellReference firstCell = areaReference.getFirstCell();
XSSFSheet sheet = workbook.getSheet(firstCell.getSheetName());
XSSFRow row = sheet.getRow(firstCell.getRow());
XSSFCell cell = row.getCell(firstCell.getCol());

// get cell function
private XSSFCell getCell(XSSFSheet sheet, String cellCoordinate) {
CellReference d4 = new CellReference(cellCoordinate);
XSSFRow row = sheet.getRow(d4.getRow());
return row.getCell(d4.getCol());
}

其他操作(POI)

copy sheet

xlsm to xlsx