重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
public static void main(String[] args) throws Exception {String url = "C:\\Users\\LQT\\Desktop\\test.xlsx";
InputStream in = null;
try {File file = new File(url);
if (!file.exists()) {throw new Exception("文件不存在!");
}
in = new FileInputStream(file);
// 读取整个Excel
XSSFWorkbook workbook = new XSSFWorkbook(in);
// 获取第一个表单Sheet
XSSFSheet sheetAt = workbook.getSheetAt(0);
XSSFRow titleRow = sheetAt.getRow(0);
titleRow.createCell(0).setCellValue(1);
titleRow.createCell(1).setCellValue(9);
sheetAt.setForceFormulaRecalculation(true);
//后面使用它来执行计算公式 核心代码
FormulaEvaluator evaluator = workbook.getCreationHelper().createFormulaEvaluator();
CellReference cellReference = new CellReference("C1");
Row row = sheetAt.getRow(cellReference.getRow());
Cell cell = row.getCell(cellReference.getCol());
CellValue cellValue = evaluator.evaluate(cell);
System.out.println(cellValue.getNumberValue());
}catch (Exception e){e.printStackTrace();
}finally {try {if(in != null){in.close();
}
}catch (Exception e){e.printStackTrace();
}
}
}
excel 文件可以自己创建,上面示例公式为:C1=SUM(A1:B1);
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧