IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SpringBoot使用模板动态导出PDF使用itextpdf -> 正文阅读

[Java知识库]SpringBoot使用模板动态导出PDF使用itextpdf

SpringBoot使用模板动态导出PDF使用itextpdf

1.引包

----- dependencies部分-------------------------------------------------------------------------------

<dependency>
  <groupId>com.itextpdf</groupId>
    <artifactId>itextpdf</artifactId>
    <version>5.5.13</version>
</dependency>
<!--字体集-->
<dependency>
    <groupId>com.itextpdf</groupId>
    <artifactId>itext-asian</artifactId>
    <version>5.2.0</version>
</dependency>

----- build部分-------------------------------------------------------------------------------
配置所需字体包,将包放在resources路径下,我使用的是宋体,可以在本地C:\Windows\Fonts中拷贝需要使用的字体包
请添加图片描述

<resources>
   <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
        <excludes>
            <exclude>fonts/*</exclude>
        </excludes>
    </resource>
    <resource>
        <directory>src/main/resources</directory>
        <filtering>false</filtering>
        <includes>
            <include>fonts/*</include>
        </includes>
    </resource>
</resources>

2.controller层代码段

@GetMapping(value = "/export", produces = "application/json")
@ResponseBody
 public void export(HttpServletResponse response, SinCardTempFeeQueryVO sinCardTempFeeQueryVO) {
     log.info("收据打印开始startPrint()");
     response.setHeader("content-disposition","attachment;fileName="+"ReceiptPrinter.pdf");
     try {
         reportPrint.generateTempPDF(response,sinCardTempFeeQueryVO);
         log.info("收据打印结束Print()");
     } catch (Exception e) {
         e.printStackTrace();
     }
 }

3.service层代码段

package com.lotso.web.module.KDFinfeeSure.service.impl;


import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.itextpdf.text.pdf.AcroFields;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.PdfStamper;
import com.lotso.web.common.utils.ConvertUpMoneyUtil;
import com.lotso.web.common.utils.HttpClientHelper;
import com.lotso.web.module.KDFinfeeSure.service.ReportPrintService;
import com.lotso.web.module.KDFinfeeSure.vo.JGSinCardQueryVO;
import com.lotso.web.module.KDFinfeeSure.vo.SinCardTempFeeQueryVO;
import com.lotso.web.module.system.entity.Dict;
import com.lotso.web.module.system.mapper.IDictMapper;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;

@Service
@Slf4j
public class ReportPrintImpl implements ReportPrintService {

    @Autowired
    IDictMapper dictMapper;

    @Autowired
    private HttpClientHelper httpClient;

    @Override
    public  void generateTempPDF(HttpServletResponse response, SinCardTempFeeQueryVO sinCardTempFeeQueryVO) throws Exception {
        PdfReader reader = null;
        PdfStamper ps = null;
        OutputStream fos = null;
        ByteArrayOutputStream bos = null;
        InputStream fin = null;
        ServletOutputStream out = null;
        try {
//            String fileName = "E:\\Work\\unifiedpaymentpayplatformxyd\\src\\main\\resources\\templates\\pdf\\KDDLR_Receipt_Template.pdf";
            //模板绝对路径--服务器
            String fileName = "/app/file/pdf/KDDLR_Receipt_Template.pdf";
            reader = new PdfReader(fileName);
            bos = new ByteArrayOutputStream();
            ps = new PdfStamper(reader, bos);

            // 使用中文字体
            BaseFont bf = BaseFont.createFont("/fonts/STSONG.TTF", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            ArrayList<BaseFont> fontList = new ArrayList<BaseFont>();
            fontList.add(bf);

            AcroFields fields = ps.getAcroFields();
            fields.setSubstitutionFonts(fontList);
            fillData(fields, data(sinCardTempFeeQueryVO));//渲染

            //必须要调用这个,否则文档不会生成的
            ps.setFormFlattening(true);
            if(ps != null){
                ps.close();
            }
            //生成pdf路径存放的路径
            fos = response.getOutputStream();
            fos.write(bos.toByteArray());

        }catch (Exception e){
            e.printStackTrace();
            log.error("异常:{",e.getMessage()+e.getCause()+"}");
        }finally {
            if(fos!=null){
                fos.flush();
                fos.close();
            }
            if (bos != null){
                bos.close();
            }
            if(reader != null){
                reader.close();
            }
        }
    }

    /**
     * 填充模板中的数据
     */
    public void fillData(AcroFields fields, Map<String, String> data) {
        try {
            for (String key : data.keySet()) {
                String value = data.get(key);
                // 为字段赋值,注意字段名称是区分大小写的
                fields.setField(key, value);
            }
        } catch (Exception e) {
            e.printStackTrace();
            log.error("异常:{",e.getMessage()+e.getCause()+"}");
        }
    }

    /**
     * 填充数据源
     * 其中data存放的key值与pdf模板中的文本域值相对应
     */
    public Map<String, String> data( SinCardTempFeeQueryVO asinCardTempFeeQueryVO){
        // 构造数据 , key要与模板中的别名一一对应
        Map<String, String> paramters = new HashMap<String, String>();
        paramters.put("prtseq",sinCardTempFeeQueryVO.getPrtseq());
        paramters.put("agentcode",sinCardTempFeeQueryVO.getAgentcode());
        paramters.put("agentname",sinCardTempFeeQueryVO.getAgentname());
        paramters.put("oldprtseq",sinCardTempFeeQueryVO.getOldprtseq());
        paramters.put("reqcom",sinCardTempFeeQueryVO.getReqcom());
        return paramters;
    }
}

4.前端处理

 var confirmPay = function (obj) {
            var link = document.createElement('a');
            link.href = 'sincardtempfee/query/export?prtseq='+obj.prtseq+'&agentcode='+obj.agentcode+'&code='+obj.code;
            link.click();
        };

5.模板绘制

5.1.模板绘制工具

Adobe Acrobat DC
Alt

5.2.绘制模板 Alt

Alt

5.3.将模板引入项目,放在项目resource路径下

Alt

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-06-03 23:53:36  更:2022-06-03 23:54:29 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 20:29:40-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码