GroupDocs.Viewer for Node.js allows you to render documents in various formats as HTML, PDF, JPEG, and PNG files. You do not need to use third-party software to view files within your JavaScript application....Classification Product Solution Purchase...
Installation from GroupDocs Repository using Maven GroupDocs hosts all Java APIs on GroupDocs Repository. You can easily use GroupDocs.Parser for Java API directly in your Maven projects with simple configurations.
Specify GroupDocs Repository Configuration First, you need to specify GroupDocs repository configuration/location in your Maven pom.xml as follows:
GroupDocsJavaAPIGroupDocs Java APIhttps://releases.groupdocs.com/java/repo/ Define GroupDocs.Parser for Java API Dependency Then define GroupDocs.Parser for Java API dependency in your pom....Classification Product Solution Purchase...
This article explains how to merge files of PDF, Microsoft Word, Excel and PowerPoint and other formats using GroupDocs.Merger for Java API....Classification Product Solution Purchase...
This article explains how to load a document from FTP storage with GroupDocs.Viewer within your Java applications....Classification Product Solution Purchase...
This article explains how to set document password after files comparison within your .NET applications using GroupDocs.Comparison for .NET....Classification Product Solution Purchase...
The following example demonstrates how to save the redacted document, replacing an original file:
// Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the document in original format overwriting original file redactor.save(options); } } finally { redactor....Classification Product Solution Purchase...
This article explains how to get only summary page when comparing documents with GroupDocs.Comparison for Java....Classification Product Solution Purchase...