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.

In this article, we'll use Java's HttpURLConnection class to send a GET request to an API and process the returned JSON data in detail.

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

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

            // Create a URL object
            URL url = new URL(apiUrl);

            // Open connection
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();

            // Set request method to GET
            connection.setRequestMethod("GET");

            // Check the response code
            int responseCode = connection.getResponseCode();
            if (responseCode == HttpURLConnection.HTTP_OK) {
                // Read the JSON data returned
                BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
                String inputLine;
                StringBuilder response = new StringBuilder();

                while ((inputLine = in.readLine()) != null) {
                    response.append(inputLine);
                }
                in.close();

                // Display the JSON data
                System.out.println("JSON Data: " + response.toString());
            } else {
                System.out.println("Request failed. Error code: " + responseCode);
            }

            // Close the connection
            connection.disconnect();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

Detailed explanation

  1. import java.io.BufferedReader; import java.io.InputStreamReader;: Import necessary classes to read data from the API.
  2. import java.net.HttpURLConnection; import java.net.URL;: Import necessary classes to establish a connection to the API URL.
  3. URL url = new URL(apiUrl);: Create a URL object with the API endpoint.
  4. HttpURLConnection connection = (HttpURLConnection) url.openConnection();: Open a connection to the URL.
  5. connection.setRequestMethod("GET");: Set the HTTP request method to GET.
  6. int responseCode = connection.getResponseCode();: Get the response code from the server.
  7. BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));: Read the JSON data returned by the API.
  8. System.out.println("JSON Data: " + response.toString());: Display the JSON data returned by the API.

System Requirements

  • Java version: 8 or later

Tips

  • Always check the server response code to handle error situations.
  • When working with complex JSON data, consider using libraries like org.json or Gson to handle JSON processing.


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.
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.
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.
Generating Captcha in Java

A comprehensive guide on how to create a Captcha in Java to protect your application from automated activities and enhance security.
How to SELECT data from a MySQL database using Java

A guide on how to use Prepared Statements in Java to query data from a table in a MySQL database safely and effectively.
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 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.
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.
Guide to creating a multi-image upload form in Java

A step-by-step guide on how to create a multi-image upload form using Java with Spring Boot and the `Commons FileUpload` library. This tutorial covers setup and code examples.
List of Common Functions When Using Selenium Chrome in Java

This article lists commonly used functions in Selenium with ChromeDriver in Java, helping users quickly grasp basic operations for browser automation.

main.add_cart_success