GroupDocs.Parser pulls content out of documents — plain text, formatted text, images, metadata, hyperlinks, tables and barcodes — across PDF, Word, spreadsheets, presentations, email, ebooks and archives. It is the usual first step when feeding documents to a search index or a language model.
Every example below opens contract.docx and is ready to copy into a project once you have installed the package.
Extract text from a document
getText returns a TextReader. It returns null rather than throwing when a format does not support text extraction, so check the reader before you read from it.
importcom.groupdocs.parser.Parser;importcom.groupdocs.parser.data.TextReader;try(Parserparser=newParser("contract.docx")){try(TextReaderreader=parser.getText()){if(reader==null){System.out.println("Text extraction is not supported for this format.");}else{System.out.println(reader.readToEnd());}}}
contract.docx is the sample file used in this example. Click here to download it.
Consulting Services Agreement
Cascade Partners and Aldergrove Manufacturing
This agreement records the terms under which Cascade Partners will deliver the engagement known internally as Project Northlight. It is issued by Dana Whitfield, Engagement Lead, and countersigned by Marcus Oyelaran.
1. Scope of work
Cascade Partners will review the current order-to-cash process at Aldergrove Manufacturing, identify the constraints limiting throughput, and deliver a prioritised remediation plan with an
[TRUNCATED]
getText also accepts a zero-based page index, so you can pull one page out of a long document instead of reading the whole thing.
importcom.groupdocs.parser.Parser;importcom.groupdocs.parser.data.TextReader;try(Parserparser=newParser("contract.docx")){// Read the first page only; the page index is zero-based
try(TextReaderreader=parser.getText(0)){if(reader==null){System.out.println("Text extraction is not supported for this format.");}else{System.out.println(reader.readToEnd());}}}
contract.docx is the sample file used in this example. Click here to download it.
Consulting Services Agreement
Cascade Partners and Aldergrove Manufacturing
This agreement records the terms under which Cascade Partners will deliver the engagement known internally as Project Northlight. It is issued by Dana Whitfield, Engagement Lead, and countersigned by Marcus Oyelaran.
1. Scope of work
Cascade Partners will review the current order-to-cash process at Aldergrove Manufacturing, identify the constraints limiting throughput, and deliver a prioritised remediation plan with an i
[TRUNCATED]
Formatted extraction keeps the document’s structure — headings, lists, emphasis — instead of flattening it. Markdown is the format to ask for when the text is destined for a language model.
importjava.nio.charset.StandardCharsets;importjava.nio.file.Files;importjava.nio.file.Paths;importcom.groupdocs.parser.Parser;importcom.groupdocs.parser.data.TextReader;importcom.groupdocs.parser.options.FormattedTextMode;importcom.groupdocs.parser.options.FormattedTextOptions;try(Parserparser=newParser("contract.docx")){try(TextReaderreader=parser.getFormattedText(newFormattedTextOptions(FormattedTextMode.Markdown))){if(reader==null){System.out.println("Formatted extraction is not supported for this format.");}else{Files.write(Paths.get("parser-extract-markdown.md"),reader.readToEnd().getBytes(StandardCharsets.UTF_8));}}}
contract.docx is the sample file used in this example. Click here to download it.
**Consulting Services Agreement**
Cascade Partners and Aldergrove Manufacturing
This agreement records the terms under which Cascade Partners will deliver the engagement known internally as Project Northlight. It is issued by Dana Whitfield, Engagement Lead, and countersigned by Marcus Oyelaran.
# **1. Scope of work**
Cascade Partners will review the current order-to-cash process at Aldergrove Manufacturing, identify the constraints limiting throughput, and deliver a prioritised remediation
[TRUNCATED]
Formatted extraction is not available for every format — PDF returns null from getFormattedText, where plain getText works fine — which is why the snippet checks the reader first. Word documents support Markdown, HTML and plain-text modes.
Read document information
getDocumentInfo reports the format and page count before you commit to extracting anything.
GroupDocs.Parser also extracts images, hyperlinks, tables of contents and barcodes, parses structured data with user-defined templates, reads PDF form values, and reaches into email attachments and ZIP archives.