国产Word格式处理控件Spire.Doc功能演示:在 Java 中为 Word 添加数字签名

import com.spire.doc.Document; import com.spire.doc.FileFormat;  public class AddDigitalSignature {  public static void main(String[] args) {   //Create a Document object Document doc = new Document();  //Load  the sample Word file doc.loadFromFile("C:\Users\Administrator\Desktop\Java Doc.docx");  //Specify certificate path String certificatePath = "C:\Users\Administrator\Desktop\gary.pfx";  //Specify password of the certificate String certificatePassword = "e-iceblue";  //Sign the document with certificate and save to file doc.saveToFile("AddDigitalSignature.docx", FileFormat.Docx_2013, certificatePath, certificatePassword); } }

输出结果

国产Word格式处理控件Spire.Doc功能演示:在 Java 中为 Word 添加数字签名


Spire.Doc for Java更新至v4.5.1,该版本支持验证文档的保护密码,增强了Word到PDF/HTML/SVG的转换功能,同时还修复了加载和合并文档等时出现的问题。具体细节如下:

新功能:

Document document = new Document(); document.loadFromFile(input); boolean checkResult = document.checkProtectionPassWord(password);
  • 支持添加数字签名
  • String input="input.docx"; Document doc = new Document(); doc.loadFromFile(input); String result = "AddDigitalSignature.docx"; doc.saveToFile(result, FileFormat.Docx, "gary.pfx", "e-iceblue");

    整合所有格式API处理套包Spire.office for Java正在 火热销售中!联系客服立马1分钟了解全部咨询!

    标签:

    声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

    上一篇 2021年5月7日
    下一篇 2021年5月8日

    相关推荐

    发表回复

    登录后才能评论