概述

印章是我国特有的历史文化产物,古代主要用作身份凭证和行驶职权的工具。它的起源是由于社会生活的实际需要。早在商周时代,印章就已经产生。如今的印章已成为一种独特的,融实用性和艺术性为一体的艺术瑰宝。传统的印章容易被坏人、小人私刻;从而新闻鲜有报道某某私刻公章,侵吞国家财产。随着计算机技术、加密技术及图像处理技术的发展,出现了电子签章。电子签章是电子签名的一种表现形式,利用图像处理技术、数字加密技术将电子签名操作转化为与纸质文件盖章操作相同的可视效果,同时利用电子签名技术保障电子信息的真实性和完整性以及签名人的不可否认性。

电子签章与数字证书一样是身份验证的一种手段,泛指所有以电子形式存在,依附在电子文件并与其逻辑关联,可用以辨识电子文件签署者身份,保证文件的完整性,并表示签署者同意电子文件所陈述事实的内容。一般来说对电子签章的认定都是从技术角度而言的。主要是指通过特定的技术方案来鉴别当事人的身份及确保电子资料内容不被篡改的安全保障措施。电子签章常于发送安全电子邮件、访问安全站点、网上招标投标、网上签约、安全网上公文传送、公司合同、电子处方笺等。

技术选型

目前主流处理PDF文件两个jar包分别是:

  1. 开源组织Apache的PDFBox,官网https://pdfbox.apache.org/
  2. 大名鼎鼎adobe公司的iText,官网https://itextpdf.com/tags/adobe,其中iText又分为iText5和iText7

如何在PDFBox、iText5和iText7选出合适自己项目的技术呢?

对比PDFBox、iText5和iText7这三者:

  1. PDFBox的功能相对较弱,iText5和iText7的功能非常强悍;
  2. iText5的资料网上相对较多,如果出现问题容易找到解决方案;PDFBox和iText7的网上资料相对较少,如果出现问题不易找到相关解决方案;
  3. 通过阅读PDFBox代码目前PDFBox还没提供自定义签章的相关接口;iText5和iText7提供了处理自定义签章的相关实现
  4. PDFBox只能实现把签章图片加签到PDF文件;iText5和iText7除了可以把签章图片加签到PDF文件,还可以实现直接对签章进行绘制,把文件绘制到签章上。
  5. PDFBox和iText5/iText7使用的协议不一样。PDFBox使用的是APACHE LICENSE VERSION 2.0(https://www.apache.org/licenses/);iText5/iText7使用的是AGPL(https://itextpdf.com/agpl)。PDFBox免费使用,AGPL商用收费

本分享JAVA对PDF文件进行电子签章需要实现的功能:

  1. 生成证书。与PDFBox、iText5和iText7技术无关
  2. 按模板输出PDF文件:PDFBox、iText5和iText7都可以完成,但是PDFBox会遇到中文乱码比较棘手的问题
  3. 在PDF文件中实现把签章图片加签到PDF文件:PDFBox、iText5和iText7都可以实现,没有很多的区别
  4. 在PDF文件中绘制签章:iText5和iText7都可以实现,PDFBox目前不支持
  5. 在PDF文件中生成高清签章:iText5和iText7都可以实现,PDFBox目前不支持
  6. 在PDF文件中进行多次签名::PDFBox、iText5和iText7都可以完成,没有区别

通过相关技术分析和要实现的功能分析,采用iText5进行开发,唯一遗憾的是iText商用收费;但是这不是做技术需要关心的!!选用iText5的理由:

  1. 使用iText5能实现全部的功能
  2. 如何在开发中遇到相关问题,容易找到相应解决方案

准备相关文件:

1.背景色为空的印章图片
2.扩展名为.p12的证书(参考资料:https://blog.csdn.net/devil_bye/article/details/827591402)
3.freemarker模版

引入相关maven依赖

  1. <!--Freemarker wls-->
  2. <dependency>
  3. <groupId>org.freemarker</groupId>
  4. <artifactId>freemarker</artifactId>
  5. <version>2.3.28</version>
  6. </dependency>
  7. <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
  8. <dependency>
  9. <groupId>com.itextpdf</groupId>
  10. <artifactId>itextpdf</artifactId>
  11. <version>5.5.13</version>
  12. </dependency>
  13. <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
  14. <dependency>
  15. <groupId>com.itextpdf</groupId>
  16. <artifactId>itext-asian</artifactId>
  17. <version>5.2.0</version>
  18. </dependency>
  19. <!-- https://mvnrepository.com/artifact/com.itextpdf.tool/xmlworker -->
  20. <dependency>
  21. <groupId>com.itextpdf.tool</groupId>
  22. <artifactId>xmlworker</artifactId>
  23. <version>5.5.13</version>
  24. </dependency>
  25. <!-- https://mvnrepository.com/artifact/org.xhtmlrenderer/flying-saucer-pdf -->
  26. <dependency>
  27. <groupId>org.xhtmlrenderer</groupId>
  28. <artifactId>flying-saucer-pdf</artifactId>
  29. <version>9.1.16</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.bouncycastle</groupId>
  33. <artifactId>bcprov-jdk15on</artifactId>
  34. <version>1.56</version>
  35. </dependency>

编写相关代码

1.工具类,第一个函数功能是将freemarker模转换成pdf,第二个函数是给pdf添加电子签章。

  1. package ect.inv.util;
  2. import com.hand.hap.core.IRequest;
  3. import com.hand.hap.fnd.dto.Company;
  4. import com.itextpdf.text.*;
  5. import com.itextpdf.text.pdf.PdfReader;
  6. import com.itextpdf.text.pdf.PdfSignatureAppearance;
  7. import com.itextpdf.text.pdf.PdfStamper;
  8. import com.itextpdf.text.pdf.PdfWriter;
  9. import com.itextpdf.text.pdf.security.*;
  10. import com.itextpdf.tool.xml.XMLWorkerHelper;
  11. import freemarker.template.Configuration;
  12. import freemarker.template.Template;
  13. import freemarker.template.TemplateException;
  14. import org.slf4j.Logger;
  15. import org.slf4j.LoggerFactory;
  16. import org.springframework.util.StringUtils;
  17. import javax.servlet.http.HttpServletRequest;
  18. import java.io.*;
  19. import java.nio.charset.Charset;
  20. import java.security.GeneralSecurityException;
  21. import java.security.KeyStore;
  22. import java.security.PrivateKey;
  23. import java.security.cert.Certificate;
  24. import java.util.Map;
  25. /**
  26. * @ClassName: ItextPDFUtil
  27. * @Description: itext导出pdf通用类
  28. * @create: 2019-01-22 11:14
  29. * @Verison:1,0
  30. **/
  31. public class ItextPDFUtil {
  32. private static Logger logger = LoggerFactory.getLogger(ItextPDFUtil.class);
  33. private static String CHINA_TEX_INTER="CHINA_TEX_INTER"; //中纺棉国际
  34. private static String ME_SPIN_COTTON="ME_SPIN_COTTON"; //中纺棉花
  35. /**
  36. * 生成pdf
  37. * @param request
  38. * @param root
  39. * @param pdfName
  40. * @param pngName
  41. * @param docurx
  42. * @param docury
  43. * @return
  44. * @throws TemplateException
  45. * @throws IOException
  46. * @throws Exception
  47. */
  48. public static ByteArrayOutputStream processPdf(HttpServletRequest request, Map root, String pdfName, String pngName
  49. , Float docurx, Float docury) throws TemplateException, IOException, Exception {
  50. String basePath = request.getSession().getServletContext().getRealPath("/");
  51. Configuration cfg = new Configuration(Configuration.VERSION_2_3_0);
  52. //设置加载模板的目录
  53. String ftlUrl = basePath + "/WEB-INF/view/ftl";
  54. logger.info("pdf模板路径:" + ftlUrl);
  55. cfg.setDirectoryForTemplateLoading(new File(ftlUrl));
  56. // 设置编码
  57. cfg.setDefaultEncoding("UTF-8");
  58. logger.info("从指定的模板目录中加载对应的模板文件");
  59. // 从指定的模板目录中加载对应的模板文件
  60. Template temp = cfg.getTemplate("" + pdfName + ".ftl");
  61. root.put("basePath", basePath);
  62. String fileName = basePath + "/WEB-INF/view/" + pdfName + System.currentTimeMillis() + ".html";
  63. logger.info("生成HTML文件名:" + fileName);
  64. File file = new File(fileName);
  65. if (!file.exists()) {
  66. file.createNewFile();
  67. }
  68. Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), "UTF-8"));
  69. temp.process(root, out);
  70. String outputFileName = basePath + "/resources/template" + System.currentTimeMillis() + ".pdf";
  71. String outputSignFileName = basePath + "/resources/template" + System.currentTimeMillis() + "sign.pdf";
  72. logger.info("生成PDF文件名:" + outputFileName);
  73. Document document = null;
  74. if (docurx == null || docury == null) {
  75. //默认设置
  76. document = new Document(PageSize.A4); // 横向打印
  77. } else {
  78. document = new Document(new RectangleReadOnly(docurx, docury));
  79. }
  80. PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(outputFileName));
  81. document.open();
  82. XMLWorkerHelper.getInstance().parseXHtml(writer, document, new FileInputStream(fileName), Charset.forName("UTF-8"));
  83. document.close();
  84. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  85. String DEST = outputFileName;
  86. if (!StringUtils.isEmpty(pngName)) {
  87. /*=============================电子签章 Start===========================================*/
  88. String KEYSTORE = basePath + "/lib/pdf/zrong2.p12";
  89. char[] PASSWORD = "chinatex".toCharArray();//keystory密码
  90. String SRC = outputFileName;//原始pdf
  91. DEST = outputSignFileName;//签名完成的pdf
  92. String chapterPath = basePath + "/lib/pdf/" + pngName + ".png";//签章图片
  93. String reason = "理由";
  94. String location = "位置";
  95. sign(new FileInputStream(SRC), new FileOutputStream(DEST),
  96. new FileInputStream(KEYSTORE), PASSWORD,
  97. reason, location, chapterPath);
  98. /*=============================电子签章 Start==========================================*/
  99. }
  100. InputStream is = new FileInputStream(DEST);
  101. int buf;
  102. while ((buf = is.read()) != -1) {
  103. baos.write(buf);
  104. }
  105. baos.flush();
  106. is.close();
  107. out.close();
  108. writer.close();
  109. file = new File(fileName);
  110. file.delete();
  111. file = new File(outputFileName);
  112. file.delete();
  113. file = new File(DEST);
  114. file.delete();
  115. return baos;
  116. }
  117. /**
  118. * 在已经生成的pdf上添加电子签章,生成新的pdf并将其输出出来
  119. * @param src
  120. * @param dest
  121. * @param p12Stream
  122. * @param password
  123. * @param reason
  124. * @param location
  125. * @param chapterPath
  126. * @throws GeneralSecurityException
  127. * @throws IOException
  128. * @throws DocumentException
  129. */
  130. public static void sign(InputStream src //需要签章的pdf文件路径
  131. , OutputStream dest // 签完章的pdf文件路径
  132. , InputStream p12Stream, //p12 路径
  133. char[] password
  134. , String reason //签名的原因,显示在pdf签名属性中,随便填
  135. , String location, String chapterPath) //签名的地点,显示在pdf签名属性中,随便填
  136. throws GeneralSecurityException, IOException, DocumentException {
  137. //读取keystore ,获得私钥和证书链
  138. KeyStore ks = KeyStore.getInstance("PKCS12");
  139. ks.load(p12Stream, password);
  140. String alias = (String) ks.aliases().nextElement();
  141. PrivateKey pk = (PrivateKey) ks.getKey(alias, password);
  142. Certificate[] chain = ks.getCertificateChain(alias);
  143. //下边的步骤都是固定的,照着写就行了,没啥要解释的
  144. // Creating the reader and the stamper,开始pdfreader
  145. PdfReader reader = new PdfReader(src);
  146. //目标文件输出流
  147. //创建签章工具PdfStamper ,最后一个boolean参数
  148. //false的话,pdf文件只允许被签名一次,多次签名,最后一次有效
  149. //true的话,pdf可以被追加签名,验签工具可以识别出每次签名之后文档是否被修改
  150. PdfStamper stamper = PdfStamper.createSignature(reader, dest, '\0', null, false);
  151. // 获取数字签章属性对象,设定数字签章的属性
  152. PdfSignatureAppearance appearance = stamper.getSignatureAppearance();
  153. appearance.setReason(reason);
  154. appearance.setLocation(location);
  155. //设置签名的位置,页码,签名域名称,多次追加签名的时候,签名预名称不能一样
  156. //签名的位置,是图章相对于pdf页面的位置坐标,原点为pdf页面左下角
  157. //四个参数的分别是,图章左下角x,图章左下角y,图章右上角x,图章右上角y
  158. appearance.setVisibleSignature(new Rectangle(300, 600, 630, 500), 1, "sig1");
  159. //读取图章图片,这个image是itext包的image
  160. Image image = Image.getInstance(chapterPath);
  161. appearance.setSignatureGraphic(image);
  162. appearance.setCertificationLevel(PdfSignatureAppearance.CERTIFIED_NO_CHANGES_ALLOWED);
  163. //设置图章的显示方式,如下选择的是只显示图章(还有其他的模式,可以图章和签名描述一同显示)
  164. appearance.setRenderingMode(PdfSignatureAppearance.RenderingMode.GRAPHIC);
  165. // 这里的itext提供了2个用于签名的接口,可以自己实现,后边着重说这个实现
  166. // 摘要算法
  167. ExternalDigest digest = new BouncyCastleDigest();
  168. // 签名算法
  169. ExternalSignature signature = new PrivateKeySignature(pk, DigestAlgorithms.SHA256, null);
  170. // 调用itext签名方法完成pdf签章CryptoStandard.CMS 签名方式,建议采用这种
  171. MakeSignature.signDetached(appearance, digest, signature, chain, null, null, null, 0, MakeSignature.CryptoStandard.CMS);
  172. }

2.freemarker模版

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6. <title>Title</title>
  7. <style mce_bogus="1" type="text/css">
  8. .template {
  9. font-family: "SimSun";
  10. color: black;
  11. padding: 10px 40px 10px 40px;
  12. }
  13. .template div {
  14. line-height: 1.5;
  15. }
  16. .header1 {
  17. font-size: 20px;
  18. font-weight: 800;
  19. text-align: center
  20. }
  21. .header2 {
  22. font-family: "SimSun";
  23. font-size: 15px;
  24. font-weight: 800;
  25. text-align: center
  26. }
  27. .table1 table{
  28. line-height: 1;
  29. margin-top: 5px;
  30. width: 100%;
  31. border : 0.5px solid black;
  32. border: 0.5px solid black;
  33. table-layout:fixed;
  34. border-collapse: collapse;
  35. overflow:hidden;
  36. }
  37. .table1 td{
  38. text-align:center;
  39. border: 0.5px solid black;
  40. border: 0.5px solid black;
  41. word-break:break-all;
  42. border-collapse: collapse;
  43. font-size: 15px;
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <div id="templateNumFiv" class="template">
  49. <p class="header1">${(modelNumTre.companyFullName)?default("")}</p>
  50. <p class="header2">国产棉提货(出库)单</p><br/><br/><br/>
  51. <table width="100%">
  52. <tr>
  53. <td width="70%" style="text-align: left;font-size: 15px;">${(modelNumTre.subinvName)?default("")}:</td>
  54. <td width="30%" style="text-align: left;font-size: 15px;">编号:${(modelNumTre.outNum)?default("")}</td>
  55. </tr>
  56. </table>
  57. <div style="font-size: 15px;">&nbsp;&nbsp;请将我司存放在贵仓库的${modelNumTre.wareOutbatches?size}批棉花(重量共计${wareOutWeight?default("")?string("#.######")}吨)的货权转移至${(modelNumTre.exeCustName)?default("")} 名下,请贵仓库给予${(modelNumTre.exeCustName)?default("")}办理提货手续,具体批次如下:</div><br/>
  58. <table class="table1" style="width: 100%;table-layout:fixed;word-break:break-all;padding-bottom: 0px;margin-bottom: 0px;border-bottom: 0px;border-collapse:collapse;" >
  59. <tr>
  60. <td style="width: 10%;text-align: center;" >买方</td>
  61. <td style="width: 45%;text-align: center;" >${(modelNumTre.exeCustName)?default("")}</td>
  62. <td style="width: 15%;text-align: center;">合同号</td>
  63. <td style="width: 30%;text-align: center;" >${(modelNumTre.conNum)?default("")}</td>
  64. </tr>
  65. </table>
  66. <table class="table1" style="width: 100%;table-layout:fixed;word-break:break-all;padding-bottom: 0px;margin-bottom: 0px;border-bottom: 0px;border-collapse:collapse;" >
  67. <tr>
  68. <td style="width: 10%;text-align: center;">序号</td>
  69. <td style="width: 10%;text-align: center;">产地</td>
  70. <td style="width: 25%;text-align: center;">批次</td>
  71. <td style="width: 10%;text-align: center;">件数</td>
  72. <td style="width: 15%;text-align: center;">重量</td>
  73. <td style="width: 20%;text-align: center;">重量标准</td>
  74. <td style="width: 10%;text-align: center;">货位</td>
  75. </tr>
  76. <#if modelNumTre.wareOutbatches?? && (modelNumTre.wareOutbatches?size > 0) >
  77. <#list modelNumTre.wareOutbatches as aim>
  78. <tr>
  79. <td style="width: 10%;text-align: center;">${aim_index+1}</td>
  80. <td style="width: 10%;text-align: center;">${(aim.origin)?default("")}</td>
  81. <td style="width: 25%;text-align: center;">${(aim.batchNum)?default("")}</td>
  82. <td style="width: 10%;text-align: center;">${(aim.batchQty)?default("")}</td>
  83. <td style="width: 15%;text-align: center;">${aim.batchWeight?default("")?string("#.######")}</td>
  84. <td style="width: 20%;text-align: center;">${(modelNumTre.outQualityStand)?default("")}</td>
  85. <td style="width: 10%;text-align: center;">${(aim.loctNum)?default("")}</td>
  86. </tr>
  87. </#list>
  88. <tr>
  89. <td style="width: 10%;text-align: center;">汇总</td>
  90. <td style="width: 10%;text-align: center;"></td>
  91. <td style="width: 25%;text-align: center;"></td>
  92. <td style="width: 10%;text-align: center;">${(wareOutConut)?default("")}</td>
  93. <td style="width: 15%;text-align: center;">${wareOutWeight?default("")?string("#.######")}</td>
  94. <td style="width: 20%;text-align: center;"></td>
  95. <td style="width: 10%;text-align: center;"></td>
  96. </tr>
  97. </#if>
  98. </table>
  99. <br/>
  100. <div style="font-size: 15px">费用承担:<label style="display: inline;" id="fivPay">${(fee)?default("")}</label><br/>
  101. 本提货(出库)单传真件、扫描件与原件具有同等法律效力。
  102. </div>
  103. <br/>
  104. <table width="100%" style="">
  105. <tr>
  106. <td style="width:60%;font-size: 15px;"></td>
  107. <td style="width:40%;text-align: center;font-size: 15px;">${(modelNumTre.companyFullName)?default("")}</td>
  108. </tr>
  109. <tr>
  110. <td style="width:60%;font-size: 15px;"></td>
  111. <td style="width:40%;text-align: center;font-size: 15px;">${(orderDate005)?default("")}</td>
  112. </tr>
  113. </table><br/><br/><br/><br/><br/><br/>
  114. <table width="100%">
  115. <tr>
  116. <td style="width:33%;text-align: left;font-size: 15px;">部门经理:</td>
  117. <td style="width:33%;text-align: left;font-size: 15px;">经办人:${(modelNumTre.peopleName)?default("")}</td>
  118. <td style="width:33%;text-align: left;font-size: 15px;"><#if '${isWf?default("")}'=='Y'>审核人:${employeeName?default("")}<#else >审核人:${(actName)?default("")}</#if></td>
  119. </tr>
  120. </table>
  121. <br/>
  122. <table width="100%">
  123. <tr>
  124. <td style="width:100%;text-align: left;font-size: 15px;">收款信息:${(modelNumTre.remark)?default("")}</td>
  125. </tr>
  126. </table>
  127. </div>
  128. </body>
  129. </html>

3.调用电子签章功具类和freemarker模版生成具有电子签章的pdf

  1. @RequestMapping(value = "/ect/inv/ware/outbound/ftlToOnePDF")
  2. @ResponseBody
  3. public void ftlToOnePDF(HttpServletRequest httpServletRequest,HttpServletResponse httpServletResponse,String cottonType,String outId)
  4. throws Exception{
  5. String pdfName="template_inv_ware_outbound_GB_Sign";
  6. String basePath = this.getViewPath();
  7. logger.info("项目路径:"+basePath);
  8. IRequest iRequest = createRequestContext(httpServletRequest);
  9. WareOutbound wareOutbound=new WareOutbound();
  10. wareOutbound.setOutId(Long.parseLong(outId));
  11. wareOutbound = service.self().selectByPrimaryKey(iRequest, wareOutbound);
  12. Company company=new Company();
  13. company.setCompanyId(wareOutbound.getComId());
  14. company=companyMapper.selectByPrimaryKey(company);
  15. ModelAndView data=service.getModelAndViewNumThree(iRequest,wareOutbound,new ModelAndView(),null);
  16. String pngName= ItextPDFUtil.companyToSign(iRequest,company);
  17. ByteArrayOutputStream out= ItextPDFUtil.processPdf(httpServletRequest,data.getModelMap(),pdfName,pngName,595.0F,842.0F);//调用了PDF打印工具类
  18. httpServletResponse.setCharacterEncoding("UTF-8");
  19. httpServletResponse.setContentType("application/pdf");
  20. OutputStream sOut = httpServletResponse.getOutputStream();
  21. sOut.flush();
  22. sOut.write(out.toByteArray());
  23. sOut.close();
  24. }

4.展示效果

image.png

至此,电子签章的代码整理完毕。