You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods:
import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** *
* This is an example of ILogger implementation, tracking count of error messages. *
*/ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
The page describes how to load PDF, Word, Excel, PowerPoint documents from Azure Blob storage when using GroupDocs.Annotation for .NET....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
This article shows how to receive digital certificates properties over Document Info method....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
This section explains how to load document from FTP with GroupDocs.Signature API....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
Render email attachments with GroupDocs.Viewer for Java in the same way as you would render any other documents...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for .NET....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
This article explains how to merge files of PDF, Microsoft Word, Excel and PowerPoint and other formats using GroupDocs.Merger for Node.js via Java API....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
Learn how to perform wildcard search using Java. Discover how to use wildcard search in Java and group wildcards for more efficient and flexible search queries....Signature Product Family GroupDocs.Metadata Product Family GroupDocs...
GroupDocs.Parser provides the functionality to extract data from Microsoft Office Word documents. Both classic (doc, dot) and Open XML (docx, dotx) formats are supported. Also LibreOffice Writer (OpenOffice.org Writer) formats and RTF are supported.
The following table provides the list of supported formats:
Format Description DOC Microsoft Office Word Document DOT Microsoft Office Word Document Template DOCX Microsoft Office Open XML Document DOCM Microsoft Office Open XML Macro-Enabled Document DOTX Microsoft Office Open XML Document Template DOTM Microsoft Office Open XML Document Macro-Enabled Template TXT Plain text ODT Open Document Text OTT Open Document Text Template RTF Rich Text Format More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...