使用許可權密碼加密PDF
複製、編輯或列印PDF檔案需要許可權密碼(也稱為擁有者或主密碼)。 瞭解如何使用DocAssuranceService API,以程式設計方式將許可權密碼套用至PDF。
以下JSP程式碼會使用許可權密碼加密PDF:
<%--
Encrypt PDF with permissions password
--%>
<%@include file="/libs/foundation/global.jsp"%>
<%@ page import="com.adobe.fd.docassurance.client.api.EncryptionOptions,java.util.*,java.io.*,com.adobe.fd.encryption.client.*" %>
<%@page session="false" %>
<%
String filePath = request.getParameter("saveLocation");
InputStream pdfIS = null;
com.adobe.aemfd.docmanager.Document generatedDocument = null;
// get the pdf file
javax.servlet.http.Part pdfPart = request.getPart("pdfFile");
pdfIS = pdfPart.getInputStream();
com.adobe.aemfd.docmanager.Document pdfDocument = new com.adobe.aemfd.docmanager.Document(pdfIS);
// encrypt the document with permssions password. You can only print this document
PasswordEncryptionOptionSpec poSpec = new PasswordEncryptionOptionSpec();
poSpec.setCompatability(PasswordEncryptionCompatability.ACRO_X);
poSpec.setEncryptOption(PasswordEncryptionOption.ALL);
List<PasswordEncryptionPermission> permissionList = new ArrayList<PasswordEncryptionPermission>();
permissionList.add(PasswordEncryptionPermission.PASSWORD_PRINT_LOW);
//hardcoding passwords into code is for demonstration purposes only.In real life scenarios the password is sourced from a secure location
poSpec.setPermissionPassword("adobe");
poSpec.setPermissionsRequested(permissionList);
EncryptionOptions encryptionOptions = EncryptionOptions.getInstance();
encryptionOptions.setEncryptionType(com.adobe.fd.docassurance.client.api.DocAssuranceServiceOperationTypes.ENCRYPT_WITH_PASSWORD);
encryptionOptions.setPasswordEncryptionOptionSpec(poSpec);
com.adobe.fd.docassurance.client.api.DocAssuranceService docAssuranceService = sling.getService(com.adobe.fd.docassurance.client.api.DocAssuranceService.class);
com.adobe.aemfd.docmanager.Document securedDocument = docAssuranceService.secureDocument(pdfDocument,encryptionOptions,null,null,null);
securedDocument.copyToFile(new java.io.File(filePath));
out.println("Document encrypted and saved to " +filePath);
%>
若要在您的系統上測試範例封裝
安裝套件後,將下列URL新增至AdobeGranite CSRF篩選器的OSGi設定允許清單:
- 登入configMgr
- 搜尋AdobeGranite CSRF篩選器
- 在排除的區段中新增以下路徑並儲存
- /content/AemFormsSamples/encrypt
測試範例
測試範常式式碼的方法有很多種。 最快捷、最輕鬆的方式就是使用Postman應用程式。 Postman可讓您向伺服器提出POST要求。下列熒幕擷圖顯示post要求運作所需的要求引數。 在提交請求之前,請務必指定適當的授權型別。
recommendation-more-help
8de24117-1378-413c-a581-01e660b7163e