测试POI的formula方法
点击(此处)折叠或打开
创新互联致力于网站设计、网站制作,成都网站设计,集团网站建设等服务标准化,推过标准化降低中小企业的建站的成本,并持续提升建站的定制化服务水平进行质量交付,让企业网站从市场竞争中脱颖而出。 选择创新互联,就选择了安全、稳定、美观的网站建设服务!
-
public static void formula() throws Exception{
-
Workbook workbook = new HSSFWorkbook();
-
Sheet sheet = workbook.createSheet("formula");
-
Row row1 = sheet.createRow(0);
-
Row row2 = sheet.createRow(1);
-
Row row3 = sheet.createRow(2);
-
-
Cell cell1 = row1.createCell(0);
-
cell1.setCellValue("A=");
-
Cell cell2 = row1.createCell(1);
-
cell2.setCellValue(2);
-
-
Cell cell3 = row2.createCell(0);
-
cell3.setCellValue("B=");
-
Cell cell4 = row2.createCell(1);
-
cell4.setCellValue(4);
-
-
Cell cell5 = row3.createCell(0);
-
cell5.setCellValue("Sum=");
-
Cell cell6 = row3.createCell(1);
-
cell6.setCellType(Cell.CELL_TYPE_FORMULA);
-
cell6.setCellFormula("SUM(B1:B2)");
-
-
workbook.getCreationHelper().createFormulaEvaluator().evaluateAll();
-
FileOutputStream fileOutputStream = new FileOutputStream(new File("c:/a.xlsx"));
-
workbook.write(fileOutputStream);
-
fileOutputStream.close();
-
System.out.println("执行成功");
- }
当前名称:测试POI的formula方法
文章起源:http://azwzsj.com/article/giiscd.html