POI锁定列并设置Cell文本格式

时间:2024-11-08 17:34:02
         SXSSFWorkbook workbook = new SXSSFWorkbook();
Font font = workbook.createFont();
CellStyle style = workbook.createCellStyle();
style.setLocked(true);// 将整个sheet设置为只读
CellStyle notLockStyle = workbook.createCellStyle();
notLockStyle.setLocked(false);// 放开可以修改的列 DataFormat dataFormat = workbook.createDataFormat();// 设置可编辑列为文本格式,打开excel编辑不会自动科学计数法
notLockStyle.setDataFormat(dataFormat.getFormat("@")); Sheet sheet = wb.createSheet(title);
sheet.protectSheet("123456");// 整个sheet加保护,不然不可编辑模式不生效
Row rowValue = sheet.createRow(rowIndex);// rowIndex行标
Cell celValue = rowValue.createCell(cellIndex);// cellIndex列标
celValue.setCellStyle(notLockStyle);