本帖最后由 JoeJin 于 2024-1-26 18:06 编辑
在 GcExcel 中,导入 Excel 文件或者 json 文件,进行公式计算时,发现一部分公式计算结果为”#Ref!“ ,
这个公式计算结果的解释与 Excel 是保持一致的,如 sheet1 中 A1 单元格的公式为‘=Sheet2!B1’,如果 Sheet2 由于各种历史原因丢失,那么此时 sheet1 中 A1 计算结果为‘#Ref!’,如果此时想查找到 Sheet2 怎么办呢?
GcExcel 提供了查找不存在引用 sheet 的能力
一、准备
首先,我们先创建公式
- Workbook workbook = new Workbook();
- IWorksheet workSheet = workbook.getWorksheets().get(0);
- workSheet.setName("sheet1");
- workSheet.getRange(1, 1).setFormula("sheet2!F7");
- workSheet.getRange(3, 3).setFormula("Sheet3!A1");
复制代码 二、查找
接下来,我们通过Find进行遍历 查询,关于Find可以查看此篇文章,GcExcel提供了各种类型的查找替换
https://demo.grapecity.com.cn/do ... emos/findandreplace
- FindOptions tempVar = new FindOptions();
- tempVar.setLookIn(FindLookIn.Texts);
- IRange range = null;
- do {
- range = searchRange.find("Ref", range, tempVar);
- if (range == null) {
- break;
- } else {
- //在这里做相应的逻辑
- }
- } while (true);
复制代码
上述代码是查找替换的基础代码,我们发现上述代码 searchRange 未定义,
searchRange 可以是整个 sheet, 可以是一片区域,这里我们搞点不一样的东西。
三、特殊单元格
GcExcel 提供了找到错误公式的能力,通过 specialCells 可以查找到错误公式,并返回错误公式的区域。
关于 specialCells,可以查看此文章
https://demo.grapecity.com.cn/do ... /demos/specialcells
- IRange searchRange = workSheet.getCells().specialCells(SpecialCellType.Formulas, SpecialCellsValue.Errors);
复制代码
目前为止,已经获取了查找区域,以及根据值"Ref"进行查找,接下来做查找成功的事情了。
四、公式解析
查找成功后,可以通过 range.getFormula() 获取到公式,接下来对公式进行解析,由于 Excel 公式有的简单,有的复杂,不能单纯判断等号后,感叹号前的字符串为sheet 名称,我们要通过公式树去遍历解析。
GcExcel 提供了公式解析器,可以参考此篇文章,调用 parse 拿到公式树,
https://www.grapecity.com.cn/dev ... t-doc-content_title
之后可以通过 getWorksheetName 获取 sheetName,相关代码如下:
- FormulaSyntaxTree syntaxTree = FormulaSyntaxTree.Parse(range.getFormula().replaceFirst("=", ""));
- addNotFoundSheet(syntaxTree.getRoot(), workbook);
复制代码
其中 addNotFoundSheet 方法定义如下:
- private static void addNotFoundSheet(SyntaxNode node, Workbook workbook) {
- if (node == null) {
- return;
- }
- if (node instanceof ReferenceNode) {
- String sheetName = ((ReferenceNode) node).getReference().getWorksheetName();
- if (workbook.getWorksheets().get(sheetName) == null) {
- IWorksheet tempSheet = workbook.getWorksheets().add();
- tempSheet.setName(sheetName);
- }
- }
- for (SyntaxNode child : node.getChildren()) {
- addNotFoundSheet(child, workbook);
- }
- }
复制代码
在上述代码中首先判断node是否是 ReferenceNode 类型,如果是的话,通过 node.getReference().getWorksheetName() 获取 sheet 名称。然后在工作簿中进行里添加。
处理后,对其子阶段进行递归判断,重复上述步骤,直到 node 节点为 null,退出递归查询。
完整代码如下:
- public static void main(String[] args) throws Exception {
- Workbook workbook = new Workbook();
- IWorksheet workSheet = workbook.getWorksheets().get(0);
- workSheet.setName("sheet1");
- workSheet.getRange(1, 1).setFormula("sheet2!F7");
- workSheet.getRange(3, 3).setFormula("Sheet3!A1");
- FindOptions tempVar = new FindOptions();
- tempVar.setLookIn(FindLookIn.Texts);
- IRange searchRange = workSheet.getCells().specialCells(SpecialCellType.Formulas, SpecialCellsValue.Errors);
- IRange range = null;
- do {
- range = searchRange.find("Ref", range, tempVar);
- if (range == null) {
- break;
- } else {
- FormulaSyntaxTree syntaxTree = FormulaSyntaxTree.Parse(range.getFormula().replaceFirst("=", ""));
- addNotFoundSheet(syntaxTree.getRoot(), workbook);
- }
- } while (true);
- }
- private static void addNotFoundSheet(SyntaxNode node, Workbook workbook) {
- if (node == null) {
- return;
- }
- if (node instanceof ReferenceNode) {
- String sheetName = ((ReferenceNode) node).getReference().getWorksheetName();
- if (workbook.getWorksheets().get(sheetName) == null) {
- IWorksheet tempSheet = workbook.getWorksheets().add();
- tempSheet.setName(sheetName);
- }
- }
- for (SyntaxNode child : node.getChildren()) {
- addNotFoundSheet(child, workbook);
- }
- }
复制代码
|
|