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....Us Contact Customers Legal Security Events Acquisition Ask AI...
In some cases it’s required to specify the document format manually to guarantee correct output produced by GroupDocs.Parser. The following are the cases when the document format must be specified manually:
Markdown documents MHTML documents OTP documents (OpenDocument Presentation Template) Databases Emails from remote servers Here are the steps to specify the document format for Markup document.
Instantiate the LoadOptions object and pass the document format in LoadOptions(FileFormat) constructor; Create Parser object and call any method....Us Contact Customers Legal Security Events Acquisition Ask AI...
By following this guide, you will learn how to control temporary files used by GroupDocs.Viewer for Java....Us Contact Customers Legal Security Events Acquisition Ask AI...
This article explains how to make cache thread safe with GroupDocs.Viewer within your Java applications....Us Contact Customers Legal Security Events Acquisition Ask AI...
GroupDocs.Viewer for Java enables you to convert files to HTML, PNG, JPEG, PDF file formats, and save attachments without relying on third-party applications. GroupDocs.Viewer for Java is cross-platform class library....Us Contact Customers Legal Security Events Acquisition Ask AI...
Render email attachments with GroupDocs.Viewer for Java in the same way as you would render any other documents...Us Contact Customers Legal Security Events Acquisition Ask AI...
This article explains that how to detect encoding of a text file automatically in Java....Us Contact Customers Legal Security Events Acquisition GroupDocs...