This example demonstrates how to load a password-protected Document.
advanced_usage.loading_files.LoadPasswordProtectedDocument
// Specify the password LoadOptions loadOptions = new LoadOptions(); loadOptions.setPassword("123"); // Constants.ProtectedDocx is an absolute or relative path to your Document. Ex: @"C:\Docs\source.docx" try (Metadata metadata = new Metadata(Constants.ProtectedDocx, loadOptions)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...
The watermarking API enables you extracting information about all shapes in an excel Document, Removing a particular shape, Removing shapes with particular text formatting, Replacing text for particular shapes, Replacing shape image and more....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...
Learn this article and check how to load and convert CAD Documents with advanced options using GroupDocs.Conversion for Java API....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...
This article demonstrates how to create and edit WordProcessing Documents using GroupDocs.Editor for .NET. It also covers supported formats like spreadsheets and presentations....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...
This article explains how to sign Document with multiple signatures of various type by GroupDocs.Signature API...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...
This article explains how digitally esign Documents with certificates using GroupDocs.Signature API...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...
Learn this article and check how to load and convert PDF Documents with advanced options using GroupDocs.Conversion for Java API....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...
There might be cases when the Document is presented only as a stream (without a copy on the local disk). To avoid the overhead of saving Documents to the disk, GroupDocs.Parser enables to extract data from streams directly.
The following example shows how to load the Document from the stream:
// Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a text into the reader try (TextReader reader = parser....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...