Sort Score
Result 10 results
Languages All
Labels All
Results 2,841 - 2,850 of 15,620 for

doc

(0.14 sec)
  1. How to Compare Word Documents using Java

    This short tutorial describes the process to compare Word Documents using Java and provides complete information on writing Java code to compare two Word Documents....Microsoft Word formats such as DOC, DOCM, DOT, DOTM, DOTX, and RTF...

    kb.groupdocs.com/comparison/java/how-to-compare...
  2. How to Convert XLSB to PDF in C#

    Have a look at the process to convert XLSB to PDF in C# and learn Document conversion without any third-party tools and examine code to generate PDF from XLSB in C#.... PPS, JPG, PPTX, EPUB, CSV, DOC, and many others. We went over...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  3. Parse Documents to Extract Text and Metadata us...

    GroupDocs.Parser for Java API is in the market since last year and it is proved to be one of the powerful Document parser APIs. It allows parsing and reading popular formats of word processing Documents, spreadsheets, presentations, ebooks, emails, markup Documents, notes, archives, and databases. Not only the text but you can also extract the images and metadata properties from various Document formats including PDF, XLS, XLSX, CSV, Doc, DocX, PPT, PPTX, MPP, EML, MSG, OST, PST, ONE, and many more....including PDF, XLS, XLSX, CSV, DOC, DOCX, PPT, PPTX, MPP, EML, MSG...

    blog.groupdocs.com/parser/extract-text-and-meta...
  4. Extract Text from Markdown Files in Java | Mark...

    Extract Text from Markdown Files in Java. Parser the mardown files within Java applications using Document parser API by GroupDocs....like: Word-processing Documents: DOC, DOCX, … Spreadsheets: XLS, XLSX...

    blog.groupdocs.com/parser/extract-text-from-mar...
  5. Getting known property descriptors | GroupDocs

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors JavaScript const metadata = new groupDocs.metadata.Metadata("input.Doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iDocs API Reference Live Demos Free...metadata . Metadata ( "input.doc" ); var root = metadata . getRootPackageGeneri...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  6. Get document info | GroupDocs

    GroupDocs.Metadata allows users to get meta information of a Document....Order Upgrade an Order Support Docs API Reference Live Demos Free...path to your document. Ex: @"C:\Docs\source.xlsx" try ( Metadata...

    docs.groupdocs.com/metadata/java/get-document-i...
  7. HTML | GroupDocs

    This article explains that how to extract HTML formatted text from Document page in Java....Order Upgrade an Order Support Docs API Reference Live Demos Free...welcome to extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX,...

    docs.groupdocs.com/parser/java/html/
  8. Getting known property descriptors | GroupDocs

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Order Upgrade an Order Support Docs API Reference Live Demos Free...view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX,...

    docs.groupdocs.com/metadata/java/getting-known-...
  9. Working with metadata in GIF images | GroupDocs

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....Order Upgrade an Order Support Docs API Reference Live Demos Free...view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX,...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Get document info | GroupDocs

    This article shows how to get the basic Document info....Order Upgrade an Order Support Docs API Reference Live Demos Free...welcome to extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX,...

    docs.groupdocs.com/parser/java/get-document-info/