How to Post Data to API Using Java

This article guides you on how to post data to an API using the POST method in Java, utilizing the HttpURLConnection and org.json library to handle JSON data.

In this article, we will learn how to use HttpURLConnection to make an HTTP POST request to send JSON data to an API. The code snippet provides a detailed step-by-step explanation.

import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import org.json.JSONObject;

public class PostJsonExample {
    public static void main(String[] args) {
        try {
            // API URL
            URL url = new URL("https://api.example.com/data");

            // Create HTTP connection
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            conn.setRequestMethod("POST");
            conn.setRequestProperty("Content-Type", "application/json; utf-8");
            conn.setRequestProperty("Accept", "application/json");
            conn.setDoOutput(true);

            // JSON data to be sent
            JSONObject jsonInput = new JSONObject();
            jsonInput.put("name", "John Doe");
            jsonInput.put("email", "[email protected]");

            // Send JSON data
            try (OutputStream os = conn.getOutputStream()) {
                byte[] input = jsonInput.toString().getBytes("utf-8");
                os.write(input, 0, input.length);
            }

            // Check server response
            int responseCode = conn.getResponseCode();
            if (responseCode == HttpURLConnection.HTTP_OK) {
                System.out.println("Data was sent successfully!");
            } else {
                System.out.println("Error sending data: " + responseCode);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

Detailed explanation

  1. import java.io.OutputStream; and import java.net.HttpURLConnection;: Import necessary libraries to create an HTTP connection.
  2. import org.json.JSONObject;: Import the org.json library to create JSON objects.
  3. URL url = new URL("https://api.example.com/data");: Set the URL of the API you want to post data to.
  4. HttpURLConnection conn = (HttpURLConnection) url.openConnection();: Open an HTTP connection to the API.
  5. conn.setRequestMethod("POST");: Set the HTTP request method to POST.
  6. conn.setRequestProperty("Content-Type", "application/json; utf-8");: Set the content type to JSON.
  7. conn.setDoOutput(true);: Allow sending data through the connection.
  8. JSONObject jsonInput = new JSONObject();: Create a JSON object with the data to be sent.
  9. os.write(input, 0, input.length);: Send the JSON data to the API.
  10. int responseCode = conn.getResponseCode();: Retrieve the API response code to check request status.

System Requirements

  • Java Version: JDK 8 or later
  • Library: org.json (can be downloaded via Maven or added manually)

How to install the libraries needed to run the Java code above

You can add the org.json library to your Maven project by adding the following snippet to your pom.xml file:

<dependency>
    <groupId>org.json</groupId>
    <artifactId>json</artifactId>
    <version>20210307</version>
</dependency>

Tips

  • Double-check the API URL to make sure it is correct.
  • Refer to the API documentation for more details about the expected data structure.
  • Always check the API's response code to handle error cases appropriately.


Related

How to open Notepad using Java

This guide explains how to open the Notepad application using Java by utilizing `Runtime.getRuntime().exec()`. It demonstrates how Java can interact with the system to launch external programs.
Create a Simple Chat Application Using Socket.IO in Java

A detailed guide on how to create a simple chat application using Java and Socket.IO. This article will help you understand how to set up a server and client for real-time communication.
How to convert Unicode characters with accents to non-accented in Java

A guide on how to convert accented Unicode characters to non-accented characters in Java using `Normalizer` and regular expressions.
Read Excel Content Using Apache POI in Java

A detailed guide on reading Excel file content in Java using the Apache POI library. This article provides sample code, a detailed explanation of each line, and steps for installing the necessary libraries.
How to INSERT data into a MySQL database using Java

A guide on how to use Prepared Statements in Java to insert data into a table in a MySQL database safely and effectively.
How to automatically login to a website using Selenium with Chrome in Java

This article explains how to use Selenium with Chrome to automatically log into a website using Java. It covers how to interact with web elements to perform login actions on the user interface.
How to pass an Authentication Header Token when POSTing data to an API in Java

A guide on how to pass an authentication token in the Authorization Header when sending POST requests to an API using Java. The article provides sample Java code and detailed explanations.
Multithreading in Java

A detailed guide on multithreading in Java, covering how to create and manage threads using `Thread` and `Runnable`, as well as how to synchronize data between threads.
How to Get JSON Data from API Using Java

This guide will show you how to use Java to send a GET request to an API and read the returned JSON data using HttpURLConnection.
How to UPDATE data in a MySQL database using Java

A guide on how to use Prepared Statements in Java to update data in a MySQL database table safely and effectively.

main.add_cart_success