Load password-protected document

GroupDocs.Merger allows to manipulate with documents that are protected with a password.

The following are the steps to load password-protected documents.

  • Instantiate LoadOptions object and specify source document password;
  • Instantiate Merger object with source document path or InputStream and LoadOptions object created at previous step.

The following code sample shows how to load password-protected documents.

String filePath = "c:\sample.docx";
LoadOptions loadOptions = new LoadOptions("SAMPLE_PASSWORD");
 
Merger merger = new Merger(filePath, loadOptions);
System.out.print("Document loaded successfully.");