当前位置:   article > 正文

POI-tl导出Word文档表格并且带图片+浏览器导出_poi-tl表格

poi-tl表格

POI-tl导出Word文档表格并且带图片+浏览器导出

说在前面的话

这两天有个以前的没碰过的项目提出来一个需求,导出word表格,并且是循环表格,注意是循环表格,而不是循环数据,当然既然是循环表格,顺带的数据肯定也要循环,还要带图片。先看看需求图(这是我自己参照需求画的,格式和需求一样)

在这里插入图片描述
模版
在这里插入图片描述

正文

我们用poi-tl:poi-tl是一个基于Apache POI的Word模板引擎,同时它也是一个免费开源(github地址)的Java类库,给Java程序员带来了word处理上的便捷。所需环境:

1. pom.xml 文件

		<!--word导出相关依赖-->
		<dependency>
			<groupId>com.deepoove</groupId>
			<artifactId>poi-tl</artifactId>
			<version>1.10.0</version>
		</dependency>
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi</artifactId>
			<version>4.1.2</version>
		</dependency>
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-ooxml</artifactId>
			<version>4.1.2</version>
		</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

2. pom.xml配置java代码获取resource下面word模版文件(很多博客都没看到这个配置)

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-resources-plugin</artifactId>
				<configuration>
					<encoding>UTF-8</encoding>
					<!-- 过滤后缀文件 -->
					<nonFilteredFileExtensions>
						<!--<nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
                        <nonFilteredFileExtension>xls</nonFilteredFileExtension>-->
						<nonFilteredFileExtension>docx</nonFilteredFileExtension>
					</nonFilteredFileExtensions>
				</configuration>
			</plugin>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

3.java 代码测试类(当前测试类,可以复制到本地直接运行,前提是上面的pom.xml已经配置好,哦,还有图片地址换成自己本地的)

import com.deepoove.poi.XWPFTemplate;
import com.deepoove.poi.data.*;
import org.jeecg.common.util.DateUtils;
import org.jeecg.modules.jointLogisticSupport.controller.JointLogisticSupportController;
import org.jeecg.modules.jointLogisticSupport.entity.JointLogisticSupport;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class ExportTest {
    /**
     * 导出文件具体业务
     * @throws Exception
     */
    public static void main(String[] args) throws Exception {
        // 模版放在resource
        String filePath = "/jointTemplate.docx";

        // 获取模版文件流
        InputStream inputStream = JointLogisticSupportController.class.getResourceAsStream(filePath);
        if (inputStream == null) {
            throw new IllegalArgumentException("Template file not found: " + filePath);
        }

        // 表格头
        RowRenderData tableHead = Rows.of("编号", "规格", "位置","状态").center().bgColor("4472c4").create();
        // 数据列表
        List<JointLogisticSupport> pageList = new ArrayList<>(5);

        // 创建表格list
        List<RowRenderData> rowDataList = new ArrayList<>();
        List<RowRenderData> rowDataList1 = new ArrayList<>();
        Map<String,Object> map = new HashMap<>();

        // 循环创建每一行表格
        int order = 1;
        for (int i = 0; i < 5; i++) { // 这里我就直接循环了,查出来的list数据自行循环
            rowDataList.add(Rows.create(order+"", "规格"+order, "位置"+order,"正常"));
            order ++;


            // 第二个表格
            rowDataList1.add(Rows.create("产品名称","产品"+order,"描述","描述","状态","正常"));
            rowDataList1.add(Rows.create("检验是否合格","是","检验日期","yyyy-mm-dd","检验人","程序猿"));
            // 图片路径
            String east = null;
            String prospectMap = null;

            // 因为创建表格时不能放入图片,所以先生成一个图片占位符放在临时文件中
            String eastPicture = null;
            String prospectMapPicture = null;

            // 把word中的占位符对应的值存入map
            String eastPic = null;
            String prospectMapPic = null;
            // 把占位符和图片路径放在map中
            /**
             *  下面注释部分是自己项目的代码,现在把它注释掉
             *  我们写测试用的代码
             */
//                if (StringUtils.isNotEmpty(item.getEast())){
//                    east =item.getEast();
//                    if(loadUrl(east)){
//                        eastPicture = "{{@eastPicture"+order+"}}";
//                        eastPic = "eastPicture"+order;
//                        map.put(eastPic, Pictures.ofUrl(east).size(86, 86).create());
//                    }
//                }
//                if (StringUtils.isNotEmpty(item.getProspectMap())){
//                    prospectMap =item.getProspectMap();
//                    if(loadUrl(prospectMap)){
//                        prospectMapPicture = "{{@prospectMapPicture"+order+"}}";
//                        prospectMapPic = "prospectMapPicture"+order;
//                        map.put(prospectMapPic,Pictures.ofLocal(prospectMap).size(86, 86).create());
//                    }
//                }
            // word 文档占位符
            eastPicture = "{{@eastPicture"+order+"}}";
            prospectMapPicture = "{{@prospectMapPicture"+order+"}}";

            // java 代码对应占位符的key键
            eastPic = "eastPicture"+order;
            prospectMapPic = "prospectMapPicture"+order;
            // 图片map数据
            map.put(eastPic,Pictures.ofLocal("E:\\正面.jpg").size(86, 86).create());
            map.put(prospectMapPic,Pictures.ofLocal("E:\\收割机侧面.jpg").size(86, 86).create());

            rowDataList1.add(Rows.create("正面照",eastPicture,null,"侧面照",prospectMapPicture,null));
        }
        // 合并规则,创建两个,第一个表格规则
        MergeCellRule rule = MergeCellRule.builder().build();
        // 第二个表格规则
        MergeCellRule.MergeCellRuleBuilder mergeRuleBuilder = MergeCellRule.builder();
        // 根据特定条件设置合并规则
        for (int i = 0; i < rowDataList1.size(); i++) {
            // 在此处根据具体条件来判断是否要设置合并规则
            if (i%3==2){
                mergeRuleBuilder.map(MergeCellRule.Grid.of(i, 1), MergeCellRule.Grid.of(i, 2)).map(MergeCellRule.Grid.of(i, 4), MergeCellRule.Grid.of(i, 5));
            }
        }

        MergeCellRule rule1 = mergeRuleBuilder.build();

        // 第一次生成的临时文件
        String prefix = String.valueOf(System.currentTimeMillis());
        File tempFile = File.createTempFile(prefix, ".docx");
        // 获取临时文件路径
        String firstTargetPath = tempFile.getAbsolutePath();

        // 根据模版填充临时文件
        XWPFTemplate template = XWPFTemplate.compile(inputStream).render(
                new HashMap<String, Object>() {
                    {
                        // 生成第一个表格
                        TableRenderData table = Tables.of(tableHead).center().create();
                        // 逐行添加数据到表格
                        for (RowRenderData rowData : rowDataList) {
                            table.addRow(rowData);
                        }
                        // 设置合并规则
                        table.setMergeRule(rule);
                        put("table", table);

                        // 生成第二个表格
                        TableRenderData table1 = Tables.create();
                        // 逐行添加数据到表格
                        for (RowRenderData rowData : rowDataList1) {
                            table1.addRow(rowData);
                        }
                        // 设置合并规则
                        table1.setMergeRule(rule1);
                        put("table1", table1);
                    }
                });
        template.writeAndClose(new FileOutputStream(firstTargetPath));

        // 获取临时文件模版,并把图片存入表格中
        XWPFTemplate templatePic = XWPFTemplate.compile(firstTargetPath).render(map);
        Long currentTime = DateUtils.getCurrentTimestamp();
        String fileName = "信息采集_"+currentTime+".docx";
        String path = "E:\\" + fileName;
        // 写入
        templatePic.writeAndClose(new FileOutputStream(path));
        // 删除创建的临时文件
        deleteFile(firstTargetPath);
        //response.getOutputStream().write(fileName.getBytes());
    }

    /**
     * 删除临时文件
     * @param filePath
     */
    private static void deleteFile(String filePath) {
        File file = new File(filePath);
        if (file.exists()) {
            file.delete();
        }
    }

    /**
     * 访问图片是否存在
     * @param imageUrl
     * @return
     */
    private boolean loadUrl(String imageUrl){
        try {
            // 创建URL对象
            URL url = new URL(imageUrl);

            // 打开连接
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setRequestMethod("HEAD");

            // 获取响应状态码
            int responseCode = connection.getResponseCode();
            connection.disconnect();
            if (responseCode == HttpURLConnection.HTTP_OK) {
                System.out.println("图片存在");
                // 关闭连接
                return true;
            } else {
                // 关闭连接
                System.out.println("图片不存在");
                return false;
            }
        } catch (IOException e) {
            System.out.println("发生异常:" + e.getMessage());
            return false;
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199

执行效果

执行完之后会在电脑上生成一个word文档。
在这里插入图片描述

前端导出word文档

1.需要把main方法的最后一句打开
2. 前端vue代码,自动下载的

// 导出按钮点击事件方法
handleExportWord() {
    let param = this.getQueryParams();
    if (this.selectedRowKeys && this.selectedRowKeys.length > 0) {
      param['selections'] = this.selectedRowKeys.join(",");
    }
    console.log("导出参数", param);

    // 改成自己项目封装好的get方法,请求方法改成自己的
    getAction(this.url.exportWordUrl,{
      param:param,
      // responseType:'blob'
    }).then(response => {
      console.log('test',response);
      if (!response) {
          return
      }
      const url = window._CONFIG['staticDomainURL']+'//'+response;
      const link = document.createElement('a');
      link.style.display = 'none';
      link.href = url;
      link.setAttribute('download', fileName + '.docx');
      document.body.appendChild(link);
      link.click();
      document.body.removeChild(link);
      window.URL.revokeObjectURL(url);
    })
    .catch(error => {
      console.error(error);
      this.$message.warning("文件下载失败");
    });
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32

最后

这个放入图片的方法是一种比较笨的方法,但是能达到实现效果,我也查了很多博客,文档,但是没有看到循环表格时加入图片的,其他人如果有好的方法发出来,大家一起学习。
参考文档:

参考博客

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/606829
推荐阅读
相关标签
  

闽ICP备14008679号