eazyexcel生成校验单元格内容的excel文件

功能描述

有的时候需要生成excel文件 对单元格填的值进行校验符不符合规则。

这里给出的例子是 excel中填充下拉框选项,如果输入的值不符合下拉框选项 则弹出提示

maven依赖

java 复制代码
  <dependency>
            <groupId>cn.afterturn</groupId>
            <artifactId>easypoi-spring-boot-starter</artifactId>
            <version>4.4.0</version>
        </dependency>

controller内方法

java 复制代码
@GetMapping("/down") 
public void downTemplate(HttpServletResponse response) throws IOException {


    response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
    response.setCharacterEncoding("utf-8");
    // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系
    String fileName = URLEncoder.encode("FileName", "UTF-8").replaceAll("\\+", "%20");
    response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xlsx");
    
    ArrayList<String> optionList= Lists.newArrayList();
    optionList.add("选项A");
    optionList.add("选项B");
    optionList.add("选项C");
    SelectedWriteStyleHandler selectedWriteStyleHandler = SelectedWriteStyleHandler.buildSelectList(2,optionList);
    EasyExcel.write(response.getOutputStream(), EvaluationUserImportExcel.class)
            .registerWriteHandler(selectedWriteStyleHandler).sheet("sheetName").doWrite(Lists.newArrayList());

}

自定义SelectedWriteStyleHandler

java 复制代码
import com.alibaba.excel.write.handler.SheetWriteHandler;
import com.alibaba.excel.write.handler.context.SheetWriteHandlerContext;
import com.alibaba.excel.write.metadata.holder.WriteSheetHolder;
import com.alibaba.excel.write.metadata.holder.WriteWorkbookHolder;
import com.google.common.collect.Maps;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.ss.util.CellRangeAddressList;

import java.util.List;
import java.util.Map;

/**
 * @Description 
 * @Date 2024-04-29 16:27 
 **/

public class SelectedWriteStyleHandler implements SheetWriteHandler {


    public SelectedWriteStyleHandler(int column,List<String> selectedList){
        this.selectedList=selectedList;
        this.column=column;

    }

    public static SelectedWriteStyleHandler buildSelectList(int column,List<String> selectedList){
       return new SelectedWriteStyleHandler(column,selectedList);
    }
    private List<String> selectedList;

    private int column;
    @Override
    public void afterSheetCreate(WriteWorkbookHolder writeWorkbookHolder, WriteSheetHolder writeSheetHolder) {

        Map<Integer,List<String>> selectMapParam= Maps.newHashMap();
        selectMapParam.put(column,selectedList);

        Sheet sheet = writeSheetHolder.getCachedSheet();
        DataValidationHelper helper = sheet.getDataValidationHelper();

        Workbook cachedWorkbook = writeWorkbookHolder.getCachedWorkbook();

        int index=1;

        for (Map.Entry<Integer, List<String>> entry : selectMapParam.entrySet()) {

            String sheetDicName="dictSheel"+index;
            Sheet dicSheel = cachedWorkbook.createSheet(sheetDicName);

            // 隐藏字典页
            cachedWorkbook.setSheetHidden(index++,true);

            CellRangeAddressList cellList=new CellRangeAddressList(1,1048575,entry.getKey(),entry.getKey());

            int rowLength=entry.getValue().size();
            for (int i = 0; i < rowLength; i++) {
                dicSheel.createRow(i).createCell(0).setCellValue(entry.getValue().get(i));
            }

            String refers=sheetDicName+"!$A$1:$A$"+entry.getValue().size();
            Name name = cachedWorkbook.createName();
            name.setNameName(sheetDicName);
            name.setRefersToFormula(refers);

            DataValidationConstraint listConstraint = helper.createFormulaListConstraint(sheetDicName);

            DataValidation validation = helper.createValidation(listConstraint, cellList);
            // 显示下拉箭头
            validation.setSuppressDropDownArrow(true);
            // 显示错误弹出框
            validation.setShowErrorBox(true);
            validation.createErrorBox("数据错误", "您输入的内容,不符合限制条件。");
//            validation.createPromptBox("XXX","请选择下拉项中的字典值");
            // 选择下拉项后是否允许清除单元格
            validation.setEmptyCellAllowed(false);
            validation.setErrorStyle(DataValidation.ErrorStyle.STOP);

            sheet.addValidationData(validation);

        }


    }
}
相关推荐
LAM LAB3 天前
【VBA】Excel指定单元格范围内字体设置样式,处理导出课表单元格
excel·vba
在这habit之下4 天前
Keepalived学习总结
excel
Youngchatgpt4 天前
如何在 Excel 中使用 ChatGPT:自动化任务和编写公式
人工智能·chatgpt·自动化·excel
开开心心就好4 天前
安卓开源应用,超时提醒紧急人护独居安全
windows·决策树·计算机视觉·pdf·计算机外设·excel·动态规划
D_C_tyu4 天前
Vue3 + Element Plus | el-table 多级表头表格导出 Excel(含合并单元格、单元格居中)第二版
vue.js·elementui·excel
骆驼爱记录4 天前
WPS页码设置:第X页共Y-1页
自动化·word·excel·wps·新人首发
Cxiaomu5 天前
Python 文件解析: Excel / Word / PDF 的解析、处理、预览与下载
python·word·excel
2501_930707785 天前
如何使用C#代码从 PDF 中提取表格并另存为Excel文件
pdf·excel
pacong5 天前
B生所学EXCEL
人工智能·excel