word转pdf

1.功能实现

使用poi对进行word文件进行解析处理,使用aspose进行pdf转换

aspose下载路径:https://pan.baidu.com/s/1vJWgYAAaHpnXmyKhZa4ljg 提取码:jdwp

注:如果导入了easyExcel,则只需要导入一部分poi(关于doc文件的解析),防止版本不一致的问题

2.导入依赖

       <dependency>
          <groupId>org.apache.poi</groupId>
          <artifactId>poi-ooxml</artifactId>
          <version>3.17</version>
      </dependency>
      <dependency>
          <groupId>org.apache.poi</groupId>
          <artifactId>poi</artifactId>
          <version>3.17</version>
      </dependency>
      <dependency>
          <groupId>org.apache.poi</groupId>
          <artifactId>poi-ooxml-schemas</artifactId>
          <version>3.17</version>
      </dependency>
      <!--如果导入了easyExcel的,只需要导入下面这个-->
      <dependency>
              <groupId>org.apache.poi</groupId>
              <artifactId>poi-scratchpad</artifactId>
              <version>3.17</version>
          </dependency>
      <!--aspose,用于word转pdf,此处我是将本地jar包导入了maven(将jar导入maven的方法前面有说过)-->
     <dependency>
              <groupId>com.aspose.words</groupId>
              <artifactId>com-aspose-words-1.1</artifactId>
              <version>1.1.1</version>
          </dependency>

3.获取word文件,替换其中的特殊字符:${name}

处理docx文件必须表格和段落分开处理,doc文件则不需要单独处理

   /**
     * 替換word模板的字符预览或者下载
     *
     * @param inputStream 文件输入流
     * @param outputStream 文件输出流
     * @param map ${name}的key的数据
     * @param type 下载或者预览
     * @return
     */
    public static byte[] replaceWord(InputStream inputStream, OutputStream outputStream, Map<String, String> map, Integer type, String fileType) {
        try {
             //doc文件处理
            if ("doc".equals(fileType)) {
                HWPFDocument document = new HWPFDocument(inputStream);
                replaceDocText(map, document);
                //预览
                if (type == 1) {
                    ByteArrayOutputStream baos = new ByteArrayOutputStream();
                    //3.输出流
                    document.write(baos);
                    return baos.toByteArray();
                }
                //下载
                document.write(outputStream);
            }
            if ("docx".equals(fileType)) {
              //docx文件处理
                XWPFDocument document = new XWPFDocument(inputStream);
                //替換段落
                replaceDocxTable(map, document);
                //替換文本
                replaceDocxText(map, document);
                //预览
                if (type == 1) {
                    ByteArrayOutputStream baos = new ByteArrayOutputStream();
                    //3.输出流
                    document.write(baos);
                    return baos.toByteArray();
                }
                //下载
                document.write(outputStream);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

/**
     * 替換Docx表格
     *
     * @param map
     * @param document
     */
    private static void replaceDocxTable(Map<String, String> map, XWPFDocument document) {
        //2. 替换表格中的指定文字(本人模板中 对应的姓名、性别等)
        Iterator<XWPFTable> itTable = document.getTablesIterator();
        XWPFTable table;
        int rowsCount;
        while (itTable.hasNext()) {
            table = itTable.next();
            rowsCount = table.getNumberOfRows();
            for (int i = 0; i < rowsCount; i++) {
                XWPFTableRow row = table.getRow(i);
                List<XWPFTableCell> cells = row.getTableCells();
                for (XWPFTableCell cell : cells) {
                    for (Map.Entry<String, String> e : map.entrySet()) {
                        if (cell.getText().equals(e.getKey())) {
                            XWPFParagraph xwpfParagraph = cell.addParagraph();
                            cell.removeParagraph(0);
                            //设置单元格文本样式
                            XWPFRun run1 = xwpfParagraph.createRun();
                            run1.setFontSize(11);
                            run1.setText(e.getValue());
                            //设置内容水平居中
                            CTTc cttc = cell.getCTTc();
                            CTTcPr ctPr = cttc.addNewTcPr();
                            ctPr.addNewVAlign().setVal(STVerticalJc.CENTER);
                        }
                    }
                }
            }
        }
    }


    /**
     * 替換Docx文本或者段落
     *
     * @param map
     * @param document
     */
    private static void replaceDocxText(Map<String, String> map, XWPFDocument document) {
        // 替换段落中的指定文字
        Iterator<XWPFParagraph> itPara = document.getParagraphsIterator();
        while (itPara.hasNext()) {
            XWPFParagraph paragraph = itPara.next();
            List<XWPFRun> runs = paragraph.getRuns();
            for (XWPFRun run : runs) {
                String oneparaString = run.getText(run.getTextPosition());
                if (StringUtils.isBlank(oneparaString)) {
                    continue;
                }
                for (Map.Entry<String, String> entry : map.entrySet()) {
                    oneparaString = oneparaString.replace(entry.getKey(), entry.getValue());
                }
                run.setText(oneparaString, 0);
            }
        }
    }

    /**
     * 替换doc文件
     *
     * @param map
     * @param document
     */
    private static void replaceDocText(Map<String, String> map, HWPFDocument document) {
        Range range = document.getRange();
        for (Map.Entry<String, String> entry : map.entrySet()) {
            if (entry.getValue() == null) {
                entry.setValue("  ");
            }
            range.replaceText(entry.getKey(), entry.getValue());
        }
    }

4.生成pdf预览

破解生成的水印

<!--将以下内容放在新建文件license.xml中-->
<License>
    <Data>
        <Products>
            <Product>Aspose.Total for Java</Product>
            <Product>Aspose.Words for Java</Product>
        </Products>
        <EditionType>Enterprise</EditionType>
        <SubscriptionExpiry>20991231</SubscriptionExpiry>
        <LicenseExpiry>20991231</LicenseExpiry>
        <SerialNumber>8bfe198c-7f0c-4ef8-8ff0-acc3237bf0d7</SerialNumber>
    </Data>
    <Signature>sNLLKGMUdF0r8O1kKilWAGdgfs2BvJb/2Xp8p5iuDVfZXmhppo+d0Ran1P9TKdjV4ABwAgKXxJ3jcQTqE/2IRfqwnPf8itN8aFZlV3TJPYeD3yWE7IT55Gz6EijUpC7aKeoohTb4w2fpox58wWoF3SNp6sK6jDfiAUGEHYJ9pjU=</Signature>
</License>

读取破解文件

    /**
     * 去掉aspose的水印
     *
     * @return
     */
    private static boolean getLicense() {
        boolean result = false;
        try {
            ClassPathResource cpr = new ClassPathResource("static" + File.separator + "license.xml");
            InputStream is = cpr.getInputStream();
            License aposeLic = new License();
            aposeLic.setLicense(is);
            result = true;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    }
    //word转pdf
    public static void wordToPdf(InputStream inputStream, OutputStream outputStream) {
        if (!getLicense()) { // 验证License 若不验证则转化出的pdf文档会有水印产生
            return;
        }
        try {
            long old = System.currentTimeMillis();
            com.aspose.words.Document doc = new com.aspose.words.Document(inputStream); //inputStream是将要被转化的word文档
            doc.save(outputStream, com.aspose.words.SaveFormat.PDF);//全面支持DOC, DOCX, OOXML, RTF HTML, OpenDocument, PDF, EPUB, XPS, SWF 相互转换
            long now = System.currentTimeMillis();
            outputStream.close();
            System.out.println("共耗时:" + ((now - old) / 1000.0) + "秒"); //转化用时
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

5.下载和预览中的response设置

  //预览
  response.setContentType("application/pdf;charset=UTF-8");
  //inline设置是强制浏览器显示,attachment设置时强制浏览器下载
  response.setHeader("Content-Disposition", "inline; filename= file");

//下载
 response.setContentType("application/octet-stream");
 String fileName = fileEntity.getFileName();
 response.setHeader("Content-Disposition", "attachment;fileName=" + URLEncoder.encode(fileName, "utf-8"));
response.flushBuffer();

6.问题

1.如果发现读取word文件失败,可能是word文件后缀与原始后缀不一致,如:新建一个doc,修改为后缀docx,这是读取不了的。
2.部署在linux,预览出现乱码或者空白,是因为缺少字体导致
3.建议优先选择doc格式文件,因为docx文件替换出来的字体不能匹配。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,816评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,729评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,300评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,780评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,890评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,084评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,151评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,912评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,355评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,666评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,809评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,504评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,150评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,121评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,628评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,724评论 2 351

推荐阅读更多精彩内容