一、前言

今天公司领导提出一个功能,说实现一个文件的签字+盖章功能,然后自己进行了简单的学习,对文档进行数字签名与签署纸质文档的原因大致相同,数字签名通过使用计算机加密来验证 (身份验证:验证人员和产品所声明的身份是否属实的过程。例如,通过验证用于签名代码的数字签名来确认软件发行商的代码来源和完整性。)数字信息,如文档、电子邮件和宏。数字签名有助于确保:真实性,完整性,不可否认性。目前市面上的电子签章产品也是多样化,但是不管是哪个厂家的产品,在线签章简单易用,同时也能保证签章的有效性,防篡改,防伪造,稳定,可靠就是好产品。
此次开源的系统模拟演示了文件在OA系统中的流转,主要为办公系统跨平台在线处理Office文档提供了完美的解决方案。Word文档在线处理的核心环节,包括:起草文档、领导审批、核稿、领导盖章、正式发文。PageOffice产品支持PC端Word文档在线处理的所有环节;MobOffice产品支持了移动端领导审批和领导盖章的功能。支持PC端和移动端对文档审批和盖章的互认。然后此次博客中使用的卓正软件的电子签章采用自主知识产权的核心智能识别验证技术,确保文档安全可靠。采用 COM、ActiveX嵌入式技术开发,确保软件能够支持多种应用。遵循《中华人民共和国电子签名法》关于电子签名的规范,同时支持国际通用的 RSA算法,符合国家安全标准。
PageOffice和MobOffice产品结合使用为跨平台处理Office文件提供了完美的解决方案,主要功能有word在线编辑保存和留痕,word和pdf文件在线盖章(电子印章)。
基于 Spring Boot + MyBatis Plus + Vue & Element 实现的后台管理系统 + 用户小程序,支持 RBAC 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能

  • 项目地址:https://gitee.com/zhijiantianya/ruoyi-vue-pro
  • 视频教程:https://doc.iocoder.cn/video/

    二、项目源码及部署

    1、项目结构及使用框架

    该签字+盖章流程系统使用了SpringBoot+thymeleaf实现的,然后jar包依赖使用了maven
    SpringBoot实现电子文件签字+合同系统! - 图1

  • 控制层

    1. @Controller
    2. @RequestMapping("/mobile")
    3. public class MobileOfficeController {
    4. @Value("${docpath}")
    5. private String docPath;
    6. @Value("${moblicpath}")
    7. private String moblicpath;
    8. @Autowired
    9. DocService m_docService;
    10. /**
    11. * 添加MobOffice的服务器端授权程序Servlet(必须)
    12. *
    13. */
    14. @RequestMapping("/opendoc")
    15. public void opendoc(HttpServletRequest request, HttpServletResponse response, HttpSession session,String type,String userName)throws Exception {
    16. String fileName = "";
    17. userName= URLDecoder.decode(userName,"utf-8");
    18. Doc doc=m_docService.getDocById(1);
    19. if(type.equals("word")){
    20. fileName = doc.getDocName();
    21. }else{
    22. fileName = doc.getPdfName();
    23. }
    24. OpenModeType openModeType = OpenModeType.docNormalEdit;
    25. if (fileName.endsWith(".doc")) {
    26. openModeType = OpenModeType.docNormalEdit;
    27. } else if (fileName.endsWith(".pdf")) {
    28. String mode = request.getParameter("mode");
    29. if (mode.equals("normal")) {
    30. openModeType = OpenModeType.pdfNormal;
    31. } else {
    32. openModeType = OpenModeType.pdfReadOnly;
    33. }
    34. }
    35. MobOfficeCtrl mobCtrl = new MobOfficeCtrl(request,response);
    36. mobCtrl.setSysPath(moblicpath);
    37. mobCtrl.setServerPage("/mobserver.zz");
    38. //mobCtrl.setZoomSealServer("http://xxx.xxx.xxx.xxx:8080/ZoomSealEnt/enserver.zz");
    39. mobCtrl.setSaveFilePage("/mobile/savedoc?testid="+Math.random());
    40. mobCtrl.webOpen("file://"+docPath+fileName, openModeType , userName);
    41. }
    42. @RequestMapping("/savedoc")
    43. public void savedoc(HttpServletRequest request, HttpServletResponse response){
    44. FileSaver fs = new FileSaver(request, response);
    45. fs.saveToFile(docPath+fs.getFileName());
    46. fs.close();
    47. }
    48. }
  • 项目业务层源码

    1. @Service
    2. public class DocServiceImpl implements DocService {
    3. @Autowired
    4. DocMapper docMapper;
    5. @Override
    6. public Doc getDocById(int id) throws Exception {
    7. Doc doc=docMapper.getDocById(id);
    8. //如果doc为null的话,页面所有doc.属性都报错
    9. if(doc==null) {
    10. doc=new Doc();
    11. }
    12. return doc;
    13. }
    14. @Override
    15. public Integer addDoc(Doc doc) throws Exception {
    16. int id=docMapper.addDoc(doc);
    17. return id;
    18. }
    19. @Override
    20. public Integer updateStatusForDocById(Doc doc) throws Exception {
    21. int id=docMapper.updateStatusForDocById(doc);
    22. return id;
    23. }
    24. @Override
    25. public Integer updateDocNameForDocById(Doc doc) throws Exception {
    26. int id=docMapper.updateDocNameForDocById(doc);
    27. return id;
    28. }
    29. @Override
    30. public Integer updatePdfNameForDocById(Doc doc) throws Exception {
    31. int id=docMapper.updatePdfNameForDocById(doc);
    32. return id;
    33. }
    34. }
  • 拷贝文件

    1. public class CopyFileUtil {
    2. //拷贝文件
    3. public static boolean copyFile(String oldPath, String newPath) throws Exception {
    4. boolean copyStatus=false;
    5. int bytesum = 0;
    6. int byteread = 0;
    7. File oldfile = new File(oldPath);
    8. if (oldfile.exists()) { //文件存在时
    9. InputStream inStream = new FileInputStream(oldPath); //读入原文件
    10. FileOutputStream fs = new FileOutputStream(newPath);
    11. byte[] buffer = new byte[1444];
    12. int length;
    13. while ((byteread = inStream.read(buffer)) != -1) {
    14. bytesum += byteread; //字节数 文件大小
    15. //System.out.println(bytesum);
    16. fs.write(buffer, 0, byteread);
    17. }
    18. fs.close();
    19. inStream.close();
    20. copyStatus=true;
    21. }else{
    22. copyStatus=false;
    23. }
    24. return copyStatus;
    25. }
    26. }
  • 二维码源码

    1. public class QRCodeUtil {
    2. private String codeText;//二维码内容
    3. private BarcodeFormat barcodeFormat;//二维码类型
    4. private int width;//图片宽度
    5. private int height;//图片高度
    6. private String imageformat;//图片格式
    7. private int backColorRGB;//背景色,颜色RGB的数值既可以用十进制表示,也可以用十六进制表示
    8. private int codeColorRGB;//二维码颜色
    9. private ErrorCorrectionLevel errorCorrectionLevel;//二维码纠错能力
    10. private String encodeType;
    11. public QRCodeUtil() {
    12. codeText = "www.zhuozhengsoft.com";
    13. barcodeFormat = BarcodeFormat.PDF_417;
    14. width = 400;
    15. height = 400;
    16. imageformat = "png";
    17. backColorRGB = 0xFFFFFFFF;
    18. codeColorRGB = 0xFF000000;
    19. errorCorrectionLevel = ErrorCorrectionLevel.H;
    20. encodeType = "UTF-8";
    21. }
    22. public QRCodeUtil(String text) {
    23. codeText = text;
    24. barcodeFormat = BarcodeFormat.PDF_417;
    25. width = 400;
    26. height = 400;
    27. imageformat = "png";
    28. backColorRGB = 0xFFFFFFFF;
    29. codeColorRGB = 0xFF000000;
    30. errorCorrectionLevel = ErrorCorrectionLevel.H;
    31. encodeType = "UTF-8";
    32. }
    33. public String getCodeText() {
    34. return codeText;
    35. }
    36. public void setCodeText(String codeText) {
    37. this.codeText = codeText;
    38. }
    39. public BarcodeFormat getBarcodeFormat() {
    40. return barcodeFormat;
    41. }
    42. public void setBarcodeFormat(BarcodeFormat barcodeFormat) {
    43. this.barcodeFormat = barcodeFormat;
    44. }
    45. public int getWidth() {
    46. return width;
    47. }
    48. public void setWidth(int width) {
    49. this.width = width;
    50. }
    51. public int getHeight() {
    52. return height;
    53. }
    54. public void setHeight(int height) {
    55. this.height = height;
    56. }
    57. public String getImageformat() {
    58. return imageformat;
    59. }
    60. public void setImageformat(String imageformat) {
    61. this.imageformat = imageformat;
    62. }
    63. public int getBackColorRGB() {
    64. return backColorRGB;
    65. }
    66. public void setBackColorRGB(int backColorRGB) {
    67. this.backColorRGB = backColorRGB;
    68. }
    69. public int getCodeColorRGB() {
    70. return codeColorRGB;
    71. }
    72. public void setCodeColorRGB(int codeColorRGB) {
    73. this.codeColorRGB = codeColorRGB;
    74. }
    75. public ErrorCorrectionLevel getErrorCorrectionLevel() {
    76. return errorCorrectionLevel;
    77. }
    78. public void setErrorCorrectionLevel(ErrorCorrectionLevel errorCorrectionLevel) {
    79. this.errorCorrectionLevel = errorCorrectionLevel;
    80. }
    81. private BufferedImage toBufferedImage(BitMatrix bitMatrix) {
    82. int width = bitMatrix.getWidth();
    83. int height = bitMatrix.getHeight();
    84. BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    85. for (int x = 0; x < width; x++) {
    86. for (int y = 0; y < height; y++) {
    87. image.setRGB(x, y, bitMatrix.get(x, y) ? this.codeColorRGB: this.backColorRGB);
    88. }
    89. }
    90. return image;
    91. }
    92. private byte[] writeToBytes(BitMatrix bitMatrix)
    93. throws IOException {
    94. try {
    95. BufferedImage bufferedimage = toBufferedImage(bitMatrix);
    96. //将图片保存到临时路径中
    97. File file = java.io.File.createTempFile("~pic","."+ this.imageformat);
    98. //System.out.println("临时图片路径:"+file.getPath());
    99. ImageIO.write(bufferedimage,this.imageformat,file);
    100. //获取图片转换成的二进制数组
    101. FileInputStream fis = new FileInputStream(file);
    102. int fileSize = fis.available();
    103. byte[] imageBytes = new byte[fileSize];
    104. fis.read(imageBytes);
    105. fis.close();
    106. //删除临时文件
    107. if (file.exists()) {
    108. file.delete();
    109. }
    110. return imageBytes;
    111. } catch (Exception e) {
    112. System.out.println(" Image err :" + e.getMessage());
    113. return null;
    114. }
    115. }
    116. //获取二维码图片的字节数组
    117. public byte[] getQRCodeBytes()
    118. throws IOException {
    119. try {
    120. MultiFormatWriter multiFormatWriter = new MultiFormatWriter();
    121. //设置二维码参数
    122. Map hints = new HashMap();
    123. if (this.errorCorrectionLevel != null) {
    124. //设置二维码的纠错级别
    125. hints.put(EncodeHintType.ERROR_CORRECTION, this.errorCorrectionLevel);
    126. }
    127. if (this.encodeType!=null && this.encodeType.trim().length() > 0) {
    128. //设置编码方式
    129. hints.put(EncodeHintType.CHARACTER_SET, this.encodeType);
    130. }
    131. BitMatrix bitMatrix = multiFormatWriter.encode(this.codeText, BarcodeFormat.QR_CODE, this.width, this.height, hints);
    132. byte[] bytes = writeToBytes(bitMatrix);
    133. return bytes;
    134. } catch (Exception e) {
    135. e.printStackTrace();
    136. return null;
    137. }
    138. }
    139. }

2、项目下载及部署

SpringBoot实现电子文件签字+合同系统! - 图2

  • 将项目slndemo下的slndemodata.zip压缩包拷贝到本地D盘根目录下并解压

SpringBoot实现电子文件签字+合同系统! - 图3

  • 点击启动项目

SpringBoot实现电子文件签字+合同系统! - 图4
基于 Spring Cloud Alibaba + Gateway + Nacos + RocketMQ + Vue & Element 实现的后台管理系统 + 用户小程序,支持 RBAC 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能

SpringBoot实现电子文件签字+合同系统! - 图5

2、系统首页功能简介

这是一个简单的Demo项目,模拟Word文件在办公系统中的主要流转环节,并不意味着PageOffice产品只能支持这样的文档处理流程。PageOffice产品只提供文档在线处理的功能,包括:打开、编辑、保存、动态填充、文档合并、套红、留痕、盖章等上百项功能(详细请参考PageOffice产品开发包中的示例),不提供流程控制功能,所以不管开发什么样的Web系统,只要是需要在线处理Office文档,都可以根据自己的项目需要,调用PageOffice产品相应的功能即可。「注意:为了简化代码逻辑,此演示程序只能创建一个文档进行流转。」
SpringBoot实现电子文件签字+合同系统! - 图6

3、点击起草文档

  • 点击起草文档,点击提交

SpringBoot实现电子文件签字+合同系统! - 图7

  • 点击代办文档,然后点击编辑,当你点击编辑时你没有下载PageOffice,他会提醒你安装,你点击安装之后,关闭浏览器,重新打开浏览器就能编辑了!

SpringBoot实现电子文件签字+合同系统! - 图8

  • 我们使用了PageOffice企业版,必须要注册序列化
  • 版 本:PageOffice企业版5(试用)
  • 序列号:35N8V-2YUC-LY77-W14XL

SpringBoot实现电子文件签字+合同系统! - 图9

  • 当我们注册成功以后,就可以编辑发布的文件或者公告了

SpringBoot实现电子文件签字+合同系统! - 图10

  • 编辑好以后点击保存

SpringBoot实现电子文件签字+合同系统! - 图11

  • 点击审批

SpringBoot实现电子文件签字+合同系统! - 图12

4、审批

  • 登录李总审批

SpringBoot实现电子文件签字+合同系统! - 图13

  • 退出系统,然后输入李总

SpringBoot实现电子文件签字+合同系统! - 图14

  • 然后点击批阅,下一步
  • 登录赵六进行审核稿子

SpringBoot实现电子文件签字+合同系统! - 图15

5、审稿

  • 审稿
  • 审核然后到盖章环节

SpringBoot实现电子文件签字+合同系统! - 图16

  • 使用王总登录进行盖章

SpringBoot实现电子文件签字+合同系统! - 图17

6、盖章和签字的实现

  • 王总登录

SpringBoot实现电子文件签字+合同系统! - 图18

  • 点击盖章

SpringBoot实现电子文件签字+合同系统! - 图19

  • 点击加盖印章

SpringBoot实现电子文件签字+合同系统! - 图20

  • 我们盖章前需要输入姓名+密码,需要输入错误报错

SpringBoot实现电子文件签字+合同系统! - 图21

  • 正确的账户密码是:
  • 账户:王五
  • 密码:123456

SpringBoot实现电子文件签字+合同系统! - 图22

  • 登录成功后有选择王五的个人章进行签字

SpringBoot实现电子文件签字+合同系统! - 图23

  • 签字成功

SpringBoot实现电子文件签字+合同系统! - 图24

  • 公司盖章,重复以上步骤

SpringBoot实现电子文件签字+合同系统! - 图25

  • 签字盖章成功

SpringBoot实现电子文件签字+合同系统! - 图26

7、完整签字盖章文件

  • 保存之后发布文件

SpringBoot实现电子文件签字+合同系统! - 图27

  • 公司文件展示

SpringBoot实现电子文件签字+合同系统! - 图28

  • 盖章签字后的文件

SpringBoot实现电子文件签字+合同系统! - 图29



欢迎加入我的知识星球,一起探讨架构,交流源码。加入方式,长按下方二维码噢