Sort Score
Result 10 results
Languages All
Labels All
Results 701 - 710 of 2,096 for

markdown editor java

(0.06 sec)
  1. Save overwriting original file | GroupDocs

    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....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/save-overwrit...
  2. Load from FTP | GroupDocs

    This article explains how to load a document from FTP storage with GroupDocs.Viewer within your Java applications....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/viewer/java/load-document-fr...
  3. Show Revisions | GroupDocs

    This article explains how to customize the display of revisions in the output document in GroupDocs.Comparison for Java....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/comparison/java/show-revisions/
  4. Product Overview | GroupDocs

    Apply annotations to your documents in the form of textual comments, explanations with highlighted notes, watermarks, polylines, text/resource redactions and much more....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/annotation/java/product-over...
  5. Get supported file formats | GroupDocs

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/get-supported-...
  6. Evaluation Limitations and Licensing | GroupDocs

    Free search api version is available to evaluate the API which will be similar as licensed but with few limitations....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/search/java/evaluation-limit...
  7. Show results of comparison as a Word Track Chan...

    This article explains how to use the Microsoft Word Track Changes comparing as a built in feature in GroupDocs.Comparison for Java....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/comparison/java/word-track-c...
  8. Load a file of a specific format | GroupDocs

    This example demonstrates how to load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat // Explicitly specifying the format of a file to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your document. Ex: @"C:\Docs\source.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit metadata System....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/load-a-file-of...
  9. Get the PDF output file information | GroupDocs

    This article explains how to get the PDF output file information using Java with GroupDocs.Viewer for Java....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/viewer/java/get-pdf-output-f...
  10. Load the password-protected documents | GroupDocs

    The page describes how to load the password protected PDF, Word, Excel, PowerPoint documents using GroupDocs.Annotation for Java....Markdown Product Solution GroupDocs...Product Solution GroupDocs.Editor Product Solution GroupDocs...

    docs.groupdocs.com/annotation/java/load-passwor...