GroupDocs.Metadata Cloud SDK for Java
This repository contains GroupDocs.Metadata Cloud SDK for Java source code. This SDK allows you to work with GroupDocs.Metadata Cloud REST APIs in your Java applications.
Requirements
Building the API client library requires Maven to be installed.
Installation
To install the API client library to your local Maven repository, execute:
mvn install
To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:
mvn deploy
Refer to the official documentation for more information.
Maven users
Add following repository and dependency to your project's POM
<repository>
<id>groupdocs-artifact-repository</id>
<name>GroupDocs Artifact Repository</name>
<url>https://repository.groupdocs.cloud/repo</url>
</repository>
<dependency>
<groupId>com.groupdocs</groupId>
<artifactId>groupdocs-metadata-cloud</artifactId>
<version>22.2</version>
<scope>compile</scope>
</dependency>
Others
At first generate the JAR by executing:
mvn package
Then manually install the following JARs:
- target/groupdocs-metadata-cloud-22.2.jar
- target/lib/*.jar
Getting Started
Please follow the installation instruction and execute the following Java code:
import com.groupdocs.cloud.metadata.client.*;
import com.groupdocs.cloud.metadata.model.*;
import com.groupdocs.cloud.metadata.api.MetadataApi;
import java.util.*;
public class ApiExample {
public static void main(String[] args) {
//TODO: Get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
String appSid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
String appKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
Configuration configuration = new Configuration(appSid, appKey);
MetadataApi metadataApi = new MetadataApi(configuration);
try {
FormatsResult response = metadataApi.getSupportedFileFormats();
for (Format format : response.getFormats()) {
System.out.println(format.getFileFormat());
}
} catch (ApiException e) {
System.err.println("Failed to get supported file formats");
e.printStackTrace();
}
}
}
Licensing
All GroupDocs.Metadata Cloud SDKs are licensed under MIT License.
Resources
Contact Us
Your feedback is very important to us. Please feel free to contact us using our Support Forums.