java 操作 word apache poi 操作word模板

**操作方式:**

1.对于固定格,可以遍历格子然后替换其中指定的值例如在要替换的cell写入${example} 这样格式,遍历到之后替换。

2.对于需要增长的表格,可以将整行置为空,然后遍历到空格,找到当前那一行,之后,通过生成行,之后再写入。

poi文档地址    https://poi.apache.org/

有两种操作word的接口推荐使用下面的

表格组成从

XWPFDocument-->XWPFTable-->XWPFTableRow-->XWPFTableCell-->XWPFParagraph-->XWPFRun

可以从xwpfDocument往下找到最里面xwpfRun.

其中XWPFParagraph为样式,可以从XWPFTable,XWPFTableRow,XWPFTableCell等中得到其对象

下面给出实例代码

使用这样的word,***注意在此例子代码中要分成两个表格***

运行结果如下

代码

```java

package com.example.demo.Test;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.IOException;

import java.util.ArrayList;

import java.util.HashMap;

import java.util.List;

import java.util.Map;

import java.util.Map.Entry;

import java.util.Set;

import org.apache.poi.xwpf.usermodel.*;

/**

* 通过word模板生成新的word工具类

* @author benran

*

*

*/

public class GenerateWordByModel {

    /**

    * 根据模板生成新word文档

    * 判断表格是需要替换还是需要插入,判断逻辑有$为替换,表格无$为插入

    * @param inputUrl 模板存放地址

    * @param outputUrl 新文档存放地址

    * @param textMap 需要替换的信息集合

    * @param tableList 需要插入的表格信息集合

    * @return 成功返回true,失败返回false

    */

    public static void changWord(String inputUrl, String outputUrl,

                                    Map<String, String> textMap, List<String[]> tableList) {

        XWPFDocument document=null;

        FileInputStream fileInputStream = null;

        FileOutputStream fileOutputStream=null;

        try {

            fileInputStream = new FileInputStream(inputUrl);

            //获取docx解析对象

            document = new XWPFDocument(fileInputStream);

            //解析替换文本段落对象

            GenerateWordByModel.changeText(document, textMap);

            //解析替换表格对象

            GenerateWordByModel.changeTable(document, textMap, tableList);

//            fileInputStream.close();

            fileOutputStream = new FileOutputStream(outputUrl);

            document.write(fileOutputStream);

        } catch (IOException e) {

            e.printStackTrace();

        }finally {

            if (fileInputStream != null) {

                try {

                    fileInputStream.close();

                } catch (IOException e) {

                    e.printStackTrace();

                }

                try {

                    fileOutputStream.close();

                } catch (IOException e) {

                    e.printStackTrace();

                }

            }

        }

    }

    /**

    * 替换段落文本

    * @param document docx解析对象

    * @param textMap 需要替换的信息集合

    */

    public static void changeText(XWPFDocument document, Map<String, String> textMap){

        //获取段落集合

        List<XWPFTable> tables = document.getTables();

        for (XWPFTable table:tables){

            if(checkText(table.getText())){

                List<XWPFTableRow> rows = table.getRows();

                for (XWPFTableRow row:rows) {

                    List<XWPFTableCell> tableCells = row.getTableCells();

                    for (XWPFTableCell cell:tableCells

                    ) {

                        if(checkText(cell.getText())){

                            List<XWPFParagraph> paragraphs=cell.getParagraphs();

                            for (XWPFParagraph paragraph : paragraphs) {

                                //判断此段落时候需要进行替换

                                String text = paragraph.getText();

                                if (checkText(text)) {

                                    List<XWPFRun> runs = paragraph.getRuns();

                                    for (XWPFRun run : runs) {

                                        //替换模板原来位置

                                        if(checkText(run.toString())){

                                            run.setText(changeValue(paragraph.getText(), textMap), 0);

                                        }else{

                                            run.setText("", 0);

                                        }

                                    }

                                }

                            }}

                    }}

            }

        }

    }

    /**

    * 替换表格对象方法

    * @param document docx解析对象

    * @param textMap 需要替换的信息集合

    * @param tableList 需要插入的表格信息集合

    */

    public static void changeTable(XWPFDocument document, Map<String, String> textMap,

                                  List<String[]> tableList){

        //获取表格对象集合

        List<XWPFTable> tables = document.getTables();

        for (int i = 0; i < tables.size(); i++) {

            XWPFTable table = tables.get(i);

            if(table.getRows().size()>1){

                //判断表格是需要替换还是需要插入,判断逻辑有$为替换,表格无$为插入

                if(!checkText(table.getText())){

                    insertTable(table, tableList);

                }

            }

        }

    }

    /**

    * 为表格插入数据,行数不够添加新行

    * @param table 需要插入数据的表格

    * @param tableList 插入数据集合

    */

    public static void insertTable(XWPFTable table, List<String[]> tableList){

        //记录需要插入的第一行

        int start =-1;

        boolean findStartFlat=false;

        for (int i = 0; i < table.getRows().size(); i++) {

            for (int j = 0; j < table.getRows().get(i).getTableCells().size(); j++) {

                if("".equals(table.getRows().get(i).getTableCells().get(j).getText())){

                    start=i;

                    break;

                }

            }

            if(findStartFlat){

                break;

            }

        }

        //创建行,根据需要插入的数据添加新行

        if(start!=-1){

            for(int i = 1; i < tableList.size(); i++){

                insertRow(table,start,start+i);

            }

        }

        //遍历表格插入数据

        List<XWPFTableRow> rows = table.getRows();

        for(int i = start; i < rows.size(); i++){

            List<XWPFTableCell> cells = rows.get(i).getTableCells();

            for(int j = 0; j < table.getRow(start).getTableCells().size(); j++){

                    XWPFTableCell cell = cells.get(j);

                    cell.setText(tableList.get(0)[j]);

            }

            tableList.remove(0);

        }

    }

    public static void insertRow(XWPFTable table, int copyrowIndex, int newrowIndex) {

        // 在表格中指定的位置新增一行

        XWPFTableRow targetRow = table.insertNewTableRow(newrowIndex);

        // 获取需要复制行对象

        XWPFTableRow copyRow = table.getRow(copyrowIndex);

        //复制行对象

        targetRow.getCtRow().setTrPr(copyRow.getCtRow().getTrPr());

        //或许需要复制的行的列

        List<XWPFTableCell> copyCells = copyRow.getTableCells();

        //复制列对象

        XWPFTableCell targetCell = null;

        for (int i = 0; i < copyCells.size(); i++) {

            XWPFTableCell copyCell = copyCells.get(i);

            targetCell = targetRow.addNewTableCell();

            targetCell.getCTTc().setTcPr(copyCell.getCTTc().getTcPr());

            if (copyCell.getParagraphs() != null && copyCell.getParagraphs().size() > 0) {

                targetCell.getParagraphs().get(0).getCTP().setPPr(copyCell.getParagraphs().get(0).getCTP().getPPr());

                if (copyCell.getParagraphs().get(0).getRuns() != null

                        && copyCell.getParagraphs().get(0).getRuns().size() > 0) {

                    XWPFRun cellR = targetCell.getParagraphs().get(0).createRun();

                    cellR.setBold(copyCell.getParagraphs().get(0).getRuns().get(0).isBold());

                }

            }

        }

    }

    /**

    * 判断文本中时候包含$

    * @param text 文本

    * @return 包含返回true,不包含返回false

    */

    public static boolean checkText(String text){

        boolean check  =  false;

        if(text.indexOf("$")!= -1){

            check = true;

        }

        return check;

    }

    /**

    * 匹配传入信息集合与模板

    * @param value 模板需要替换的区域

    * @param textMap 传入信息集合

    * @return 模板需要替换区域信息集合对应值

    */

    public static String changeValue(String value, Map<String, String> textMap){

        Set<Entry<String, String>> textSets = textMap.entrySet();

        for (Entry<String, String> textSet : textSets) {

            //匹配模板与替换值 格式${key}

            String key = "${"+textSet.getKey()+"}";

            if(key.indexOf(value)!= -1){

                value = textSet.getValue();

            }

        }

        return value;

    }

    public static void main(String[] args) {

        //模板文件地址

        String inputUrl = "C:\\Users\\admin\\Desktop\\ffsss.docx";

        //新生产的模板文件

        String outputUrl = "C:\\Users\\admin\\Desktop\\replitResult.docx";

        Map<String, String> testMap = new HashMap<String, String>();

        testMap.put("name", "名字");

        testMap.put("sex", "性别");

        testMap.put("address", "住址");

        testMap.put("phone", "电话");

        testMap.put("nation", "民族");

        List<String[]> testList = new ArrayList<String[]>();

        testList.add(new String[]{"111","22","33","44"});

        testList.add(new String[]{"111","22","33","--"});

        testList.add(new String[]{"111","22","33","00"});

        testList.add(new String[]{"111","22","33","99"});

        testList.add(new String[]{"111","22","33","88"});

        testList.add(new String[]{"111","22","33","77"});

        testList.add(new String[]{"111","22","33","66"});

        testList.add(new String[]{"111","22","33","55"});

        testList.add(new String[]{"111","22","33","12"});

        GenerateWordByModel.changWord(inputUrl, outputUrl, testMap, testList);

    }

}

```

**修改代码时注意**

**${name} 会被分为多个XWPFParagraph,分成\$, name,{,} ,  name可能被分为多个XWPFRun 分成n ,a,m,e**

每个属性都会有 getText方法会遍历返回该对象下所有文字。

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

推荐阅读更多精彩内容