This article shows how to extract data (text, images, PDF forms) from ZIP-archived documents with GroupDocs.Parser....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...
To extract emails from Outlook Storage getContainer method is used. This method returns the collection of ContainerItem objects.
Outlook Storage item can contain the following metadata:
Name Description date The time and date at which the Outlook Storage item was last modified. email-sender The value of “sender” field. email-to The value of “to” field. subject The value of “subject” field. Outlook Storage container consists of email documents (msg files).
Here are the steps to extract an email text from outlook storage:...Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...
GroupDocs.Parser provides the functionality to open the password-protected documents.
The following are the steps to work with password protected documents.
Instantiate the LoadOptions object; Set password in LoadOptions(String) constructor; Create Parser object and call any method. The following code sample shows how to process password protected documents.
try { String password = "123456"; // Create an instance of Parser class with the password: try (ParserParser = new Parser(Constants.SamplePassword, new LoadOptions(password))) { // Check if text extraction is supported if (!...Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...
Learn how to open the password-protected documents....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for .NET /...
Extract email attachments using GroupDocs.Parser for .NET...Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for .NET /...
This article explains that how to extract Markdown formatted text from document page....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for .NET /...
To extract a text from emails getText method is used. This method allows to extract a text from the entire document. Pagination and raw mode is not supported for emails.
Here are the steps to extract a text from an email:
Instantiate Parser object for the initial email; Call getText method and obtain TextReader object; Read a text from reader. Warning getText method returns null value if text extraction isn’t supported for the document....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...
Learn how to search a keyword in HTML documents search(String) method is used. This method returns the collection of SearchResult objects....Parser Product Solution GroupDocs...GroupDocs.Parser Product Family / GroupDocs.Parser for Java /...