itext实现pdf自动定位合同签订 (4)

工具方法

public static boolean uploadFile(byte[] file, String filePath) throws Exception { String tempPath = filePath.substring(0,filePath.lastIndexOf("http://www.likecs.com/")); File targetFile = new File(tempPath); if(!targetFile.exists()) { boolean out = targetFile.mkdirs(); if(out) { log.info(filePath + " create success"); } else { log.info(filePath + " create fail"); } } FileOutputStream out1 = new FileOutputStream(filePath); out1.write(file); out1.flush(); out1.close(); File f = new File(filePath); return f.exists(); } 总结

公私钥的生成网上很多就自己去生成吧

如果想要测试效果的可以把签章部分先去掉也可以运行

我觉得这篇博客是我最有含金量的一篇了~我找了很多博客定位pdf签章的没有靠谱的,很多技术实现都很复杂,我最初版本,也就是前面有一篇博客实现就是改编自网上一篇博客的,但是有很多问题,代码也过于复杂难懂,弯弯绕绕且难以修改增强。

我研究了官方最新代码结合自己脑洞大开的思路,精简出了很简单的三个类,其实排除实体类,真正实现功能就一个PdfParser

**如果觉得有用给我点个赞哦^_^**

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyjxzw.html