文件批量添加水印和密码合并单元格完整版

embedded/2024/12/23 7:00:11/

这段代码是一个 Java 方法,用于向文件添加水印和密码。您解释一下:

首先,它接受一个 fileAddress 参数,表示文件的地址。
然后,它创建了一个线程安全的列表 fileDatas,用于存储文件数据。
接下来,它尝试读取文件流,并获取所有 sheet 的数据。
在循环中,它逐个读取每个 sheet 的数据,并将其添加到 fileDatas 列表中。
如果在读取数据时发生异常,它会记录错误并抛出运行时异常。
最后,它生成一个新的文件名 newFileName,并使用 generationFileAddress 方法生成带有水印和密码的文件地址。
请注意,代码中的一些变量(例如 fileUrl、dto)在这里没有定义,您需要根据您的实际情况进行替换。如果您有其他问题或需要更详细的解释,请随时告知!😊

java">	/***文件添加水印密码*/public String fileAddWatermarkPassword(String fileAddress) {final String fileUrl;try {fileUrl = AESUtils.decrypt(fileAddress);} catch (Exception e) {LogUtil.error("报表数据提取", String.format("无法解密文件地址:%s", dto.getFileAddress()), null, e);throw new RuntimeException("无法解密文件地址", e);}List<List<List<String>>> fileDatas = new ArrayList<>();Map<Integer, List<CellRangeAddress>> sheetMergedRegions = new HashMap<>();try (InputStream inputStream = readFileStream(fileUrl);Workbook workbook = WorkbookFactory.create(inputStream)) {FormulaEvaluator formulaEvaluator = workbook.getCreationHelper().createFormulaEvaluator();for (int i = 0; i < workbook.getNumberOfSheets(); i++) {Sheet sheet = workbook.getSheetAt(i);List<List<String>> fileData = processSheet(sheet,  formulaEvaluator);fileDatas.add(fileData);//捕捉合并区域sheetMergedRegions.put(i, new ArrayList<>(sheet.getMergedRegions()));}} catch (IOException | InvalidFormatException e) {LogUtil.error("报表数据提取", String.format("无法读取文件流, 文件地址:%s", fileUrl), null, e);throw new RuntimeException("无法读取文件流", e);}String newFileName = dto.getDownloadDataType() + ".xlsx";String fileAddress = generationFileAddress(fileDatas, sheetMergedRegions, newFileName, dto.getUseId(), dto.getUseName());return fileAddress;}
java">	/*** 处理合并单元格为空处理*/private List<List<String>> processSheet(Sheet sheet, FormulaEvaluator formulaEvaluator) {List<List<String>> fileData = new ArrayList<>();for (Row row : sheet) {List<String> rowData = new ArrayList<>();// Initialize row with empty strings for missing cellsint lastCellNum = row.getLastCellNum();for (int i = 0; i < lastCellNum; i++) {rowData.add(""); // Default to empty string for all cells}for (Cell cell : row) {int cellIndex = cell.getColumnIndex();String cellValue = getCellValue(cell, formulaEvaluator);rowData.set(cellIndex, cellValue); // Set cell value, handles empty cells}fileData.add(rowData);}return fileData;}
java">	/*** 计算每个单元格的值*/private static final DecimalFormat DECIMAL_FORMAT = new DecimalFormat("#");public static String getCellValue(Cell cell, FormulaEvaluator formulaEvaluator) {if (cell == null) {return "";}switch (cell.getCellType()) {case 1:return cell.getStringCellValue();case 0:if (DateUtil.isCellDateFormatted(cell)) {// Format as date if neededreturn cell.getDateCellValue().toString();} else {// Format numeric valuereturn DECIMAL_FORMAT.format(cell.getNumericCellValue());}case 4:return Boolean.toString(cell.getBooleanCellValue());case 2:// Evaluate formulareturn getCellValue(formulaEvaluator.evaluateInCell(cell), formulaEvaluator);default:return "";}}
java">/*** 生成文件地址* @param data  数据内容* @param fileName  文件名* @param useId 操作者* @return*/public String generationFileAddress(List<List<List<String>>> data, Map<Integer, List<CellRangeAddress>> sheetMergedRegions, String fileName, String useId, String useName) {String randomName = UUID.randomUUID() + "_" + fileName;String fileAddress;File tempFile = null;try (OutputStream outputStream = new FileOutputStream(randomName)) {// 配置水印内容WaterMark watermark = new WaterMark();String content = useName + useId;watermark.setContent(content);watermark.setWidth(400);watermark.setHeight(200);watermark.setYAxis(100);// 创建居中样式WriteCellStyle writeCellStyle = new WriteCellStyle();writeCellStyle.setHorizontalAlignment(HorizontalAlignment.CENTER);writeCellStyle.setVerticalAlignment(VerticalAlignment.CENTER);// 创建策略来应用样式WriteCellStyle cellStyle = new WriteCellStyle();cellStyle.setHorizontalAlignment(HorizontalAlignment.CENTER);cellStyle.setVerticalAlignment(VerticalAlignment.CENTER);WriteFont writeFont = new WriteFont();cellStyle.setWriteFont(writeFont);HorizontalCellStyleStrategy styleStrategy = new HorizontalCellStyleStrategy(cellStyle, cellStyle);// 使用 EasyExcel 写入数据ExcelWriter excelWriter = EasyExcel.write(outputStream).inMemory(true).registerWriteHandler(new WaterMarkHandler(watermark)).registerWriteHandler(styleStrategy) // 全局居中.build();for (int i = 0; i < data.size(); i++) {List<List<String>> sheetData = data.get(i);excelWriter.write(sheetData, EasyExcel.writerSheet("Sheet" + (i + 1)).build());}excelWriter.finish();} catch (Exception e) {LogUtil.error("文件添加水印和加密", String.format("生成文件地址, 文件名:%s, 操作者:%s", fileName, useId), null, e);throw new RuntimeException("生成并上传带水印的Excel文件时出错", e);}try (FileInputStream fis = new FileInputStream(randomName);Workbook workbook = WorkbookFactory.create(fis);FileOutputStream fos = new FileOutputStream(randomName)) {for (Map.Entry<Integer, List<CellRangeAddress>> entry : sheetMergedRegions.entrySet()) {Sheet sheet = workbook.getSheetAt(entry.getKey());// 设置单元格样式,内容居中CellStyle centeredStyle = workbook.createCellStyle();centeredStyle.setAlignment(HorizontalAlignment.CENTER);centeredStyle.setVerticalAlignment(VerticalAlignment.CENTER);// 重新应用合并单元格并居中for (CellRangeAddress cellRangeAddress : entry.getValue()) {sheet.addMergedRegion(cellRangeAddress);// 对合并单元格的第一个单元格应用居中样式Row row = sheet.getRow(cellRangeAddress.getFirstRow());if (row != null) {Cell cell = row.getCell(cellRangeAddress.getFirstColumn());if (cell != null) {cell.setCellStyle(centeredStyle);}}}// 根据内容自动调整列宽for (int colIndex = 0; colIndex < sheet.getRow(1).getPhysicalNumberOfCells(); colIndex++) {sheet.autoSizeColumn(colIndex);// 设置最大列宽限制,防止列宽过宽int columnWidth = sheet.getColumnWidth(colIndex);int maxColumnWidth = 6000; // 最大列宽sheet.setColumnWidth(colIndex, maxColumnWidth);}}workbook.write(fos);// 加密文件并上传String password = useId + DateUtils.convertDate2Str(new Date(), DateUtils.FORMAT_DATA_COMPACT);FileUtils.encryptExcelFile(randomName, fileName, password);tempFile = new File(fileName);//使用minio 生成文件地址fileAddress = minioUtil.uploadFile(tempFile, "report");} catch (Exception e) {LogUtil.error("文件添加水印和加密", String.format("生成文件地址, 文件名:%s, 操作者:%s", fileName, useId), null, e);throw new RuntimeException("生成并上传带水印的Excel文件时出错", e);} finally {File file = new File(randomName);if(!file.delete()){LogUtil.info("文件添加水印和机密,文件删除失败", String.format("无法删除临时文件:%s", randomName), null);}if (tempFile != null && tempFile.exists()) {if(!tempFile.delete()){LogUtil.info("文件添加水印和机密,文件删除失败", String.format("无法删除临时文件:%s", fileName), null);}}}return fileAddress;}
java">   /**** 从指定的 URL 下载文件并返回 InputStream* @param fileUrl 文件的 URL* @return InputStream 文件输入流* @throws IOException 如果发生网络或 IO 错误*/private InputStream readFileStream(String fileUrl)  {try {// 创建 URL 对象URL url = new URL(fileUrl);// 打开连接并获取输入流URLConnection urlConnection = url.openConnection();InputStream inputStream = new BufferedInputStream(urlConnection.getInputStream());// 返回输入流return inputStream;} catch (IOException e) {LogUtil.error("报表数据提取", String.format("文件地址:%s", fileUrl), null, e);throw new BaseApiException(-1, "文件流读取失败");}}

http://www.ppmy.cn/embedded/111442.html

相关文章

IT 项目管理与需求分析最佳实践

项目管理无处不在&#xff0c;它不仅仅是一个岗位&#xff0c;更是一套科学的工作方法&#xff0c;能够很好地指导我 们的工作与生活。但很多从业者缺少项目管理意识与技巧&#xff0c;为自己的工作增添了许多额外的阻 碍&#xff0c;不仅项目推进不及预期&#xff0c;也让个…

基于微信的热门景点推荐小程序的设计与实现(论文+源码)_kaic

摘 要 近些年来互联网迅速发展人们生活水平也稳步提升&#xff0c;人们也越来越热衷于旅游来提高生活品质。互联网的应用与发展也使得人们获取旅游信息的方法也更加丰富&#xff0c;以前的景点推荐系统现在已经不足以满足用户的要求了&#xff0c;也不能满足不同用户自身的个…

Excel--不规则隔行填充底纹颜色

巧用条件格式快速给小计和总计行填充不同颜色。 先选择整个表格&#xff08;选中第一行&#xff0c;按住Shift双击边框即可选中整个表格&#xff09; 新建条件格式-使用公式确定要设置格式的单元格&#xff0c;输入$B3"小计&#xff1a;"&#xff0c;设置格式&…

2024网安周今日开幕,亚信安全亮相30城

2024年国家网络安全宣传周今天在广州拉开帷幕。今年网安周继续以“网络安全为人民&#xff0c;网络安全靠人民”为主题。2024年国家网络安全宣传周涵盖了1场开幕式、1场高峰论坛、5个重要活动、15场分论坛/座谈会/闭门会、6个主题日活动和网络安全“六进”活动。亚信安全出席20…

wpf 字符串 与 变量名或函数名 相互转化:反射

在 WPF&#xff08;Windows Presentation Foundation&#xff09;中&#xff0c;通常需要将字符串与变量名或函数名相互转化时&#xff0c;使用反射或动态编程技术来实现。这主要是因为 C#&#xff08;WPF 使用的语言之一&#xff09;是强类型语言&#xff0c;变量名在编译时是…

【AI-18】Adam和SGD优化算法比较

Adam&#xff08;Adaptive Moment Estimation&#xff09;和 SGD&#xff08;Stochastic Gradient Descent&#xff0c;随机梯度下降&#xff09;是两种常见的优化算法&#xff0c;它们在不同方面有各自的特点。 一、算法原理 SGD&#xff1a; 通过计算损失函数关于每个样本的…

华为 HCIP 认证费用和报名资格

在当今竞争激烈的信息技术领域&#xff0c;华为 HCIP认证备受关注。它不仅能提升个人的技术实力与职业竞争力&#xff0c;也为企业选拔优秀人才提供了重要依据。以下将详细介绍华为 HCIP 认证的费用和报名资格。 一、HCIP 认证费用 华为HCIP认证的费用主要由考试费和培训费构成…

起重机检测系统源码分享

起重机检测检测系统源码分享 [一条龙教学YOLOV8标注好的数据集一键训练_70全套改进创新点发刊_Web前端展示] 1.研究背景与意义 项目参考AAAI Association for the Advancement of Artificial Intelligence 项目来源AACV Association for the Advancement of Computer Visio…