Sort Score
Result 10 results
Languages All
Labels All
Results 161 - 170 of 721 for

metadata management

(0.05 sec)
  1. Save a modified file to a specified location | ...

    This article shows how to save a document to a specified location on a local disk...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/save-a-modified...
  2. Save a modified file to a specified location | ...

    This article shows how to save a document to a specified location on a local disk in Java...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/save-a-modifie...
  3. Save a modified file to a stream | Documentation

    This article shows how to save a file to the specified stream...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/save-a-modified...
  4. Load a file of a specific format | Documentation

    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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/load-a-file-of...
  5. Working with interpreted values | Documentation

    This article contains a good example of numeric flag or enumeration in Node.js via Java....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/working...
  6. Load from a stream | Documentation

    This example demonstrates how to load a file from a stream. advanced_usage.loading_files.LoadFromStream // Constants.InputDoc is an absolute or relative path to your document. Ex: @"C:\Docs\source.doc" try (InputStream stream = new FileInputStream(Constants.InputDoc)) { try (Metadata Metadata = new Metadata(stream)) { // Extract, edit or remove Metadata here } } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for ....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/load-from-a-st...
  7. Load from a stream | Documentation

    This example demonstrates how to load a file from a stream....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/load-from-a-str...
  8. Load from a local disk | Documentation

    The following example demonstrates how to load file from local disk....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/load-from-a-loc...
  9. Load from a local disk | Documentation

    The following example demonstrates how to load a file from a local disk. advanced_usage.loading_files.LoadFromLocalDisk // Constants.InputOne is an absolute or relative path to your document. Ex: @"C:\Docs\source.one" try (Metadata Metadata = new Metadata(Constants.InputOne)) { // Extract, edit or remove Metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for .NET examples GroupDocs.Metadata for Java examples...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/load-from-a-lo...
  10. Working with ZIP archives | Documentation

    Get ZIP format Metadata The API allows detecting ZIP archives and reading format Metadata. The following steps are needed to be followed: Load a ZIP archive Get the root Metadata package Extract the native Metadata package using the ZipRootPackage.getZipPackage method Read the ZIP archive properties Loop through ZipPackage.getFiles to extract information about the archived files The following code snippet shows how to get Metadata from a ZIP archive. advanced_usage.managing_Metadata_for_specific_formats.archive.ZipReadNativeMetadataProperties...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-z...