| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- package com.kingdee.eas.custom.compensation.utils;
- import com.google.common.collect.Maps;
- import com.kingdee.bos.BOSException;
- import com.kingdee.bos.Context;
- import com.kingdee.shr.base.syssetting.exception.SHRWebException;
- import com.kingdee.shr.compensation.util.columnModel.CmpColumnModels;
- import com.kingdee.shr.compensation.web.handler.integrate.entry.BaseSubmitBillEntryGenerator;
- import com.spire.doc.FileFormat;
- import org.apache.commons.lang3.StringUtils;
- import org.apache.poi.xwpf.usermodel.*;
- import org.apache.xmlbeans.XmlCursor;
- import org.apache.xmlbeans.XmlObject;
- import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTDrawing;
- import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTR;
- import java.io.*;
- import java.util.*;
- import java.util.regex.Matcher;
- import java.util.regex.Pattern;
- /**
- * @Description 模板工具类
- * @Date 2025/9/16 18:08
- * @Created by 59279
- */
- public class TemplateUtil {
- /**
- * 从Word文档中提取所有${xxx}格式的变量
- *
- * @param filePath Word文档路径
- * @return 包含所有变量的集合
- * @throws IOException 如果读取文件失败
- */
- public static Set<String> extractVariablesFromWord(String filePath) throws IOException {
- Set<String> variables = new HashSet<String>();
- FileInputStream fis = null;
- XWPFDocument document = null;
- try {
- fis = new FileInputStream(filePath);
- document = new XWPFDocument(fis);
- // 处理表格中的变量
- for (XWPFTable table : document.getTables()) {
- for (XWPFTableRow row : table.getRows()) {
- for (XWPFTableCell cell : row.getTableCells()) {
- for (XWPFParagraph paragraph : cell.getParagraphs()) {
- extractVariablesFromText(paragraph.getText(), variables);
- }
- }
- }
- }
- // 处理段落中的变量
- for (XWPFParagraph paragraph : document.getParagraphs()) {
- extractVariablesFromText(paragraph.getText(), variables);
- }
- } finally {
- if (fis != null) {
- fis.close();
- }
- if (document != null) {
- document.close();
- }
- }
- return variables;
- }
- /**
- * 从Word文档中提取所有${xxx}格式的变量
- *
- * @param file Word文档字节数组
- * @return 包含所有变量的集合
- * @throws IOException 如果读取文件失败
- */
- public static Set<String> extractVariablesFromWord(byte[] file) throws IOException {
- Set<String> variables = new LinkedHashSet<String>();
- ByteArrayInputStream bis = null;
- XWPFDocument document = null;
- try {
- bis = new ByteArrayInputStream(file);
- document = new XWPFDocument(bis);
- // 处理表格中的变量
- for (XWPFTable table : document.getTables()) {
- for (XWPFTableRow row : table.getRows()) {
- for (XWPFTableCell cell : row.getTableCells()) {
- for (XWPFParagraph paragraph : cell.getParagraphs()) {
- extractVariablesFromText(paragraph.getText(), variables);
- }
- }
- }
- }
- // 处理段落中的变量
- for (XWPFParagraph paragraph : document.getParagraphs()) {
- extractVariablesFromText(paragraph.getText(), variables);
- }
- } finally {
- if (bis != null) {
- bis.close();
- }
- if (document != null) {
- document.close();
- }
- }
- return variables;
- }
- /**
- * 从文本中提取变量并添加到集合中
- *
- * @param text 要搜索的文本
- * @param variables 变量集合
- */
- private static void extractVariablesFromText(String text, Set<String> variables) {
- // 匹配${xxx}格式的正则表达式
- Pattern pattern = Pattern.compile("\\$\\{([^}]+)\\}");
- Matcher matcher = pattern.matcher(text);
- while (matcher.find()) {
- // 获取匹配的变量名(去掉${和})
- String variable = matcher.group(1);
- variables.add(variable);
- }
- }
- /**
- * 处理Word模板,替换文本框变量并添加表格行
- *
- * @param file
- * @param variables 文本框变量映射
- * @param tableData 表格数据
- * @param approveList 审批信息
- * @throws IOException 如果读写文件失败
- */
- public static byte[] processWordTemplate(
- byte[] file,
- Map<String, String> variables,
- List<Map<String, String>> tableData,
- List<Map<String, String>> approveList
- ) throws IOException, BOSException {
- ByteArrayInputStream bis = null;
- XWPFDocument document = null;
- try {
- bis = new ByteArrayInputStream(file);
- document = new XWPFDocument(bis);
- // 1. 处理文本框中的变量替换
- processTextboxes(document, variables);
- // 2. 处理段落中的变量替换
- processParagraphs(document, variables);
- // 3. 处理页眉页脚中的变量替换
- processHeadersAndFooters(document, variables);
- List<XWPFTable> tables = document.getTables();
- if (!tables.isEmpty()) {
- if (tables.size() > 0) {
- // 4. 处理表格 - 查找并添加行
- processTables(tables.get(0), tableData);
- }
- if (tables.size() > 1) {
- // 5. 处理审批表格表格 - 查找并添加行
- processApproveTables(tables.get(1), approveList);
- }
- }
- // 保存文档
- ByteArrayOutputStream bos = null;
- ByteArrayOutputStream pdfBos = null;
- ByteArrayInputStream byteArrayInputStream = null;
- try {
- bos = new ByteArrayOutputStream();
- document.write(bos);
- byteArrayInputStream = new ByteArrayInputStream(bos.toByteArray());
- pdfBos = new ByteArrayOutputStream();
- //实例化Document类的对象
- com.spire.doc.Document doc = new com.spire.doc.Document();
- doc.loadFromStream(byteArrayInputStream, FileFormat.Doc);
- //保存为PDF格式
- doc.saveToStream(pdfBos, FileFormat.PDF);
- //去除水印
- byte[] bytes = PDFUtil.removeWatermark(pdfBos.toByteArray(),"Evaluation Warning: The document was created with Spire.Doc for JAVA.");
- return bytes;
- } finally {
- if (bos != null) {
- bos.close();
- }
- if (byteArrayInputStream != null) {
- byteArrayInputStream.close();
- }
- if (pdfBos != null) {
- pdfBos.close();
- }
- }
- } finally {
- if (bis != null) {
- bis.close();
- }
- if (document != null) {
- document.close();
- }
- }
- }
- /**
- * 处理文档中的所有文本框,替换变量
- *
- * @param document Word文档对象
- * @param variables 变量映射
- */
- private static void processTextboxes(XWPFDocument document, Map<String, String> variables) {
- // 获取文档中的所有绘图对象(包括文本框)
- //List<XWPFDrawing> drawings = new ArrayList<>();
- // 从段落中获取绘图对象
- for (XWPFParagraph paragraph : document.getParagraphs()) {
- for (XWPFRun run : paragraph.getRuns()) {
- if (run.getEmbeddedPictures().size() > 0 || run.getCTR().getDrawingList().size() > 0) {
- // 这里可以处理包含绘图的运行
- }
- }
- }
- // 从页眉获取绘图对象
- List<XWPFHeader> headers = document.getHeaderList();
- for (XWPFHeader header : headers) {
- for (XWPFParagraph paragraph : header.getParagraphs()) {
- for (XWPFRun run : paragraph.getRuns()) {
- if (run.getCTR().getDrawingList().size() > 0) {
- // 处理页眉中的绘图
- }
- }
- }
- }
- // 从页脚获取绘图对象
- List<XWPFFooter> footers = document.getFooterList();
- for (XWPFFooter footer : footers) {
- for (XWPFParagraph paragraph : footer.getParagraphs()) {
- for (XWPFRun run : paragraph.getRuns()) {
- if (run.getCTR().getDrawingList().size() > 0) {
- // 处理页脚中的绘图
- }
- }
- }
- }
- // 由于POI对文本框的直接支持有限,这里使用XML遍历方式处理文本框
- try {
- // 获取文档的底层XML对象
- XmlCursor cursor = document.getDocument().newCursor();
- // 移动到文档开始
- cursor.toStartDoc();
- // 遍历所有文本框
- while (cursor.hasNextToken()) {
- XmlCursor.TokenType token = cursor.toNextToken();
- if (token.isStart()) {
- XmlObject obj = cursor.getObject();
- if (obj instanceof CTR) {
- CTR ctr = (CTR) obj;
- if (ctr.getDrawingList().size() > 0) {
- // 处理绘图对象
- for (CTDrawing drawing : ctr.getDrawingList()) {
- // 查找文本框
- XmlCursor drawingCursor = drawing.newCursor();
- if (drawingCursor.toChild("http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", "anchor") ||
- drawingCursor.toChild("http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", "inline")) {
- // 查找文本框内容
- if (drawingCursor.toChild("http://schemas.openxmlformats.org/drawingml/2006/main", "txBox")) {
- // 获取文本框中的文本
- if (drawingCursor.toChild("http://schemas.openxmlformats.org/drawingml/2006/main", "txBody")) {
- if (drawingCursor.toChild("http://schemas.openxmlformats.org/drawingml/2006/main", "p")) {
- String text = drawingCursor.getTextValue();
- // 替换变量
- String replacedText = replaceVariables(text, variables);
- // 设置回文本框
- if (!text.equals(replacedText)) {
- drawingCursor.setTextValue(replacedText);
- }
- }
- }
- }
- }
- drawingCursor.dispose();
- }
- }
- }
- }
- }
- cursor.dispose();
- } catch (Exception e) {
- System.err.println("处理文本框时出错: " + e.getMessage());
- e.printStackTrace();
- }
- }
- /**
- * 处理文档中的所有段落,替换变量
- *
- * @param document Word文档对象
- * @param variables 变量映射
- */
- private static void processParagraphs(XWPFDocument document, Map<String, String> variables) {
- for (XWPFParagraph paragraph : document.getParagraphs()) {
- String text = paragraph.getText();
- String replacedText = replaceVariables(text, variables);
- if (!text.equals(replacedText)) {
- // 清除原有内容
- for (int i = paragraph.getRuns().size() - 1; i >= 0; i--) {
- paragraph.removeRun(i);
- }
- // 添加新内容
- XWPFRun run = paragraph.createRun();
- run.setText(replacedText);
- }
- }
- }
- /**
- * 处理文档中的页眉和页脚,替换变量
- *
- * @param document Word文档对象
- * @param variables 变量映射
- */
- private static void processHeadersAndFooters(XWPFDocument document, Map<String, String> variables) {
- // 处理页眉
- List<XWPFHeader> headers = document.getHeaderList();
- for (XWPFHeader header : headers) {
- for (XWPFParagraph paragraph : header.getParagraphs()) {
- String text = paragraph.getText();
- String replacedText = replaceVariables(text, variables);
- if (!text.equals(replacedText)) {
- // 清除原有内容
- for (int i = paragraph.getRuns().size() - 1; i >= 0; i--) {
- paragraph.removeRun(i);
- }
- // 添加新内容
- XWPFRun run = paragraph.createRun();
- run.setText(replacedText);
- }
- }
- }
- // 处理页脚
- List<XWPFFooter> footers = document.getFooterList();
- for (XWPFFooter footer : footers) {
- for (XWPFParagraph paragraph : footer.getParagraphs()) {
- String text = paragraph.getText();
- String replacedText = replaceVariables(text, variables);
- if (!text.equals(replacedText)) {
- // 清除原有内容
- for (int i = paragraph.getRuns().size() - 1; i >= 0; i--) {
- paragraph.removeRun(i);
- }
- // 添加新内容
- XWPFRun run = paragraph.createRun();
- run.setText(replacedText);
- }
- }
- }
- }
- /**
- * 处理文档中的所有表格,添加行并替换变量
- *
- * @param table Word文档对象
- * @param tableData 表格数据
- */
- private static void processTables(XWPFTable table, List<Map<String, String>> tableData) {
- //for (XWPFTable table : document.getTables()) {
- // 查找模板行(通常第一行是表头,第二行是模板行)
- if (table.getNumberOfRows() >= 2) {
- XWPFTableRow templateRow = table.getRow(1);
- int num = 2;
- // 为每条数据添加新行
- for (Map<String, String> rowData : tableData) {
- // 复制模板行
- XWPFTableRow newRow = table.insertNewTableRow(2);
- // 复制每个单元格
- for (int i = 0; i < templateRow.getTableCells().size(); i++) {
- XWPFTableCell templateCell = templateRow.getCell(i);
- XWPFTableCell newCell = newRow.addNewTableCell();
- //清除自带的段落
- for (int j = newCell.getParagraphs().size() - 1; j >= 0; j--) {
- newCell.removeParagraph(j);
- }
- // 复制单元格样式
- newCell.getCTTc().setTcPr(templateCell.getCTTc().getTcPr());
- // 复制段落并替换变量
- for (XWPFParagraph paragraph : templateCell.getParagraphs()) {
- XWPFParagraph newParagraph = newCell.addParagraph();
- newParagraph.getCTP().setPPr(paragraph.getCTP().getPPr());
- //变量名称
- String text = paragraph.getText();
- String replacedText = replaceVariables(text, rowData);
- XWPFRun newRun = newParagraph.createRun();
- newRun.setText(replacedText);
- // 复制运行样式
- if (paragraph.getRuns().size() > 0) {
- XWPFRun templateRun = paragraph.getRuns().get(0);
- newRun.setBold(templateRun.isBold());
- newRun.setItalic(templateRun.isItalic());
- String fontFamily = templateRun.getFontFamily();
- if (StringUtils.isNotBlank(fontFamily)) {
- newRun.setFontFamily(fontFamily);
- }
- int fontSize = templateRun.getFontSize();
- if (fontSize > 0) {
- newRun.setFontSize(fontSize);
- }
- newRun.setColor(templateRun.getColor());
- }
- }
- }
- num++;
- }
- // 删除模板行
- table.removeRow(1);
- }
- //}
- }
- /**
- * 处理审批表格表格,添加行并替换变量
- *
- * @param table Word文档对象
- * @param tableData 表格数据
- */
- private static void processApproveTables(XWPFTable table, List<Map<String, String>> tableData) {
- // 查找模板行(通常第一行是表头,第二行是模板行)
- if (table.getNumberOfRows() >= 2) {
- XWPFTableRow templateRow = table.getRow(1);
- int num = 2;
- // 为每条数据添加新行
- for (Map<String, String> rowData : tableData) {
- // 复制模板行
- XWPFTableRow newRow = table.insertNewTableRow(2);
- // 复制每个单元格
- for (int i = 0; i < templateRow.getTableCells().size(); i++) {
- XWPFTableCell templateCell = templateRow.getCell(i);
- XWPFTableCell newCell = newRow.addNewTableCell();
- //清除自带的段落
- for (int j = newCell.getParagraphs().size() - 1; j >= 0; j--) {
- newCell.removeParagraph(j);
- }
- // 复制单元格样式
- newCell.getCTTc().setTcPr(templateCell.getCTTc().getTcPr());
- // 复制段落并替换变量
- for (XWPFParagraph paragraph : templateCell.getParagraphs()) {
- XWPFParagraph newParagraph = newCell.addParagraph();
- newParagraph.getCTP().setPPr(paragraph.getCTP().getPPr());
- //变量名称
- String text = paragraph.getText();
- String replacedText = replaceVariables(text, rowData);
- XWPFRun newRun = newParagraph.createRun();
- newRun.setText(replacedText);
- // 复制运行样式
- if (paragraph.getRuns().size() > 0) {
- XWPFRun templateRun = paragraph.getRuns().get(0);
- newRun.setBold(templateRun.isBold());
- newRun.setItalic(templateRun.isItalic());
- String fontFamily = templateRun.getFontFamily();
- if (StringUtils.isNotBlank(fontFamily)) {
- newRun.setFontFamily(fontFamily);
- }
- int fontSize = templateRun.getFontSize();
- if (fontSize > 0) {
- newRun.setFontSize(fontSize);
- }
- newRun.setColor(templateRun.getColor());
- }
- }
- }
- num++;
- }
- // 删除模板行
- table.removeRow(1);
- }
- }
- /**
- * 替换文本中的变量
- *
- * @param text 原始文本
- * @param variables 变量映射
- * @return 替换后的文本
- */
- private static String replaceVariables(String text, Map<String, String> variables) {
- if (text == null || variables == null) {
- return text;
- }
- String result = text;
- for (Map.Entry<String, String> entry : variables.entrySet()) {
- String pattern = "\\$\\{" + entry.getKey() + "\\}";
- String value = entry.getValue() == null ? "" : entry.getValue();
- result = result.replaceAll(pattern, value);
- }
- return result;
- }
- /**
- * 获取提报方案字段
- *
- * @param ctx 上下文对象
- * @param submitSchemeId 提报方案ID
- * @return 提报方案字段列表
- * @throws IOException
- * @throws SHRWebException
- */
- public static CmpColumnModels getSubmitSchemeFields(Context ctx, String submitSchemeId) throws SHRWebException {
- //获取提报方案字段
- boolean dynamicColmunRequired = true;
- Map<String, Object> params = Maps.newHashMap();
- params.put("datasource", 2);
- params.put("costTypeId", "");
- params.put("dynamicColmunRequired", dynamicColmunRequired);
- params.put("hrOrgUnitId", "");
- BaseSubmitBillEntryGenerator baseSubmitBillEntryGenerator = new BaseSubmitBillEntryGenerator();
- return baseSubmitBillEntryGenerator.getEntryColumnModels(ctx, submitSchemeId, params);
- }
- }
|