Sort Score
Result 10 results
Languages All
Labels All
Results 771 - 780 of 30,746 for

metadata

(0.13 sec)
  1. Getting known property descriptors | Documentation

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

    docs.groupdocs.com/metadata/java/getting-known-...
  2. read ID3 tags on GroupDocs Blog | Document Auto...

    read ID3 tags on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in read ID3 tags on GroupDocs Blog | Document Automation Solutions for .NET & Java Develope...... Baca tag standar metadata ID3v1, ID3v2, Lirik, dan APEv2...file mp3 menggunakan Java Metadata API. Baca Tag MP3 menggunakan...

    blog.groupdocs.com/id/tag/read-id3-tags/index.xml
  3. Basic Usage | Documentation

    Artcles listed in this page explain the common usage scenarios when documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/basic-usage/
  4. 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...
  5. Extract attachments from Emails | Documentation

    Extract email attachments using GroupDocs.Parser for .NET...Metadata Product Solution GroupDocs...can contain the following metadata: Name Description content-type...

    docs.groupdocs.com/parser/net/extract-attachmen...
  6. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument JavaScript try { var loadOptions = new LoadOptions(); loadOptions.setPassword("123"); const Metadata = new groupdocs.Metadata.Metadata("protected.docx", loadOptions); } 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. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/load-a-...
  7. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument // Specify the password LoadOptions loadOptions = new LoadOptions(); loadOptions.setPassword("123"); // Constants.ProtectedDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx" try (Metadata Metadata = new Metadata(Constants.ProtectedDocx, loadOptions)) { // 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:...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/load-a-passwor...
  8. Installation | Documentation

    Development environment Operating systems GroupDocs.Metadata for Java can be executed on any Operating System with Java JDK installed. Windows Desktops and Servers Linux Mac OS Supported runtime GroupDocs.Metadata for Java supports Java run-time version 7 (1.7) and above. Development environments NetBeans IntelliJ IDEA Eclipse Installation from GroupDocs artifactory using Maven GroupDocs hosts all Java APIs on GroupDocs Artifactory. You can easily use GroupDocs.Metadata for Java API directly in your Maven projects with simple configurations....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/installation/
  9. Extract RIFF INFO of WAV in Java on GroupDocs B...

    Extract RIFF INFO of WAV in Java on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Extract RIFF INFO of WAV in Java on GroupDocs Blog | Document Automat......INFO a metadata souborů WAV v Java Extrahujte metadata a RIFF...zvukových souborů WAV v Java. Metadata API umožňuje správu metadat...

    blog.groupdocs.com/cs/tag/extract-riff-info-of-...
  10. Get document info | Documentation

    This article shows that how to get meta information of a document....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/get-document-info/