在线或使用 Android 应用程序对 ODS 文件进行数字签名
开发强大的基于android的ODS文档签名应用程序。通过应用程序在线自由地将数字签名添加到各种文档(包括 ODS 文件)中并即时下载。
在线为 ODS 文件添加数字签名
- 上传 ODS 文件进行数字签名
- 添加签名文字或上传签名图像
- 点击“签名”按钮
- 下载签名的ODS文件
通过Android应用程序对ODS文件进行数字签名
- 将 Java 库引用添加到您的项目中
- 创建DigitalSignatureCollection类对象
- 通过 FileInputStream 加载 pfx
- 使用 PKCS12 加密创建 KeyStore 对象
- 使用 KeyStore.load 方法加载证书流和密码
- 创建 DigitalSignature 实例并添加到集合中
- 使用 Workbook 加载工作表
- 使用 setDigitalSignature(signatures) 签署工作表
- 最后保存
Java 代码:在 ODS 文件中添加数字签名
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DigitalSignatureCollection electricalSigns = new DigitalSignatureCollection(); | |
InputStream inStream = new FileInputStream("d:/temp.pfx"); | |
KeyStore inputKeyStore = KeyStore.getInstance("PKCS12"); | |
inputKeyStore.load(inStream, KEYSTORE_PASSWORD.toCharArray()); | |
DigitalSignature signature = new DigitalSignature(inputKeyStore, KEYSTORE_PASSWORD, "test for sign", | |
DateTime.getNow()); | |
electricalSigns.add(signature); | |
Workbook wkb = new Workbook(dataDirPath + "unsigned.xlsx"); | |
wkb.setDigitalSignature(signatures); | |
wkb.save(dataDirPath + "signed.xlsx"); |
使用 Android 开发电子签名应用程序
需要开发 Android 脚本或实用程序应用程序来轻松地对多个 ODS 文件进行数字签名吗?借助
Aspose.Cells for Android via Java
(
Aspose.Total for Android via Java
的子 API),任何 Android 开发人员都可以集成上述 API 代码来编写电子签名应用程序,以便在电子表格中进行签名。用于电子表格签名的强大的 Android 库,支持许多流行格式,包括 ODS 格式。