Programmable Media

Java quick start

Last updated: Jan-01-2024

This quick start is intended to let you quickly try using several common Cloudinary features. It doesn't necessarily employ coding best practices and the code you create here isn't intended for production.

You can perform this quick start in a code sandbox or in a clean project in the dev environment of your choice.

You can also view the completed code of this quick start in a GitHub repo.

Tip
If you aren't familiar with Cloudinary, you may want to first take a look at the Developer get started guide for a high-level overview of integrating Cloudinary into your code, and an introduction to the main concepts.

You may also find our Glossary helpful to understand Cloudinary-specific terminology.

Prerequisites

To perform this quick start, you'll need:

1. Set up and configure the library

Add the cloudinary and dotenv dependencies to the list of dependencies in pom.xml:

pom.xml

Note
We recommended updating the version number to use the latest version of the Java SDK.

Then, in your project, create a file called .env and add the following line with your Cloudinary environment variable (replace cloudinary://<API_KEY>:<API_SECRET>@<CLOUD_NAME> below with your own environment variable value):

.env

Important
When writing your own applications, follow your organization's policy on storing secrets and don't expose your API secret.

In your code, include the following Cloudinary libraries as well as the dotenv library in your project. Copy and paste the following code into your Main.java file:

Main.java

You can now load your Cloudinary credentials from your .env file as shown below. Copy and paste the following code into your Main class:

Main.java (continued)

2. Upload an image

Copy and paste the following code into a try block within your Main class:

Main.java (continued)

3. Get details of the image

Main.java (continued)

4. Transform the uploaded image

Main.java (continued)

5. Run your code

Run your code by clicking the Run button on the main class.

You can use the returned image tag to display the image on your website. For now, copy and paste the URL to see the transformed image in the browser:

Transformed coffee_cup image

View the completed code

You can find the full code example for this on GitHub.

Next steps

  • Learn more about the Java SDK by visiting the other pages in this SDK guide.
  • Get comprehensive details about Cloudinary features and capabilities:

✔️ Feedback sent!

Rate this page: