easyexcel 判断sheet页是否存在
时间: 2023-08-02 07:33:55 浏览: 453
poi、easyexcel分别完美复制excel的Sheet
5星 · 资源好评率100%
在EasyExcel中,我们可以通过以下代码来判断一个指定的sheet页是否存在:
```java
ExcelReader reader = EasyExcel.read("file.xlsx").build();
List<Sheet> sheets = reader.excelExecutor().sheetList();
for (Sheet sheet : sheets) {
if (sheet.getSheetName().equals("sheetName")) {
// sheet页存在
}
}
reader.finish();
```
其中,`file.xlsx`是Excel文件的路径,`sheetName`是要判断的sheet页的名称。我们可以通过`excelExecutor().sheetList()`方法获取到Excel文件中所有的sheet页,然后遍历这个列表,如果找到了指定的sheet页,则说明该sheet页存在。反之,如果遍历完列表还没有找到指定的sheet页,则说明该sheet页不存在。
阅读全文