Android JSONObject is used for JSON parsing in android apps. In this tutorial we’ll discuss and implement a JSONObject
in our android application to parse JSON data. JSON stands for JavaScript Object Notation.
JSON is used for data interchange (posting and retrieving) from the server. Hence knowing the syntax and it’s usability is important. JSON is the best alternative for XML and its more readable by human. JSON is language independent. Because of language in-dependency we can program JSON in any language (Java/C/C++). A JSON response from the server consists of many fields. An example JSON response/data is given below. We’ll use it as a reference and implement it in our application.
{
"title":"JSONParserTutorial",
"array":[
{
"company":"Google"
},
{
"company":"Facebook"
},
{
"company":"LinkedIn"
},
{
"company" : "Microsoft"
},
{
"company": "Apple"
}
],
"nested":{
"flag": true,
"random_number":1
}
}
We’ve create a random JSON data string from this page. It’s handy for editing JSON data. A JSON data consists of 4 major components that are listed below:
We’ll create a JSONObject from the static JSON data string given above and display the JSONArray in a ListView. We’ll change the application name to the title string in the JSON data.
Below image shows the android studio project for json parsing example. The project consists of the default activity and layout (with a ListView).
The activity_main.xml
is given below.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
xmlns:tools="https://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.journaldev.jsonparsing.MainActivity">
<ListView
android:layout_width="wrap_content"
android:id="@+id/list_view"
android:layout_height="match_parent"/>
</RelativeLayout>
The MainActivity.java
is given below.
package com.journaldev.jsonparsing;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity {
String json_string = "{\n" +
" \"title\":\"JSONParserTutorial\",\n" +
" \"array\":[\n" +
" {\n" +
" \"company\":\"Google\"\n" +
" },\n" +
" {\n" +
" \"company\":\"Facebook\"\n" +
" },\n" +
" {\n" +
" \"company\":\"LinkedIn\"\n" +
" },\n" +
" {\n" +
" \"company\" : \"Microsoft\"\n" +
" },\n" +
" {\n" +
" \"company\": \"Apple\"\n" +
" }\n" +
" ],\n" +
" \"nested\":{\n" +
" \"flag\": true,\n" +
" \"random_number\":1\n" +
" }\n" +
"}";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
try {
ListView listView = (ListView) findViewById(R.id.list_view);
List<String> items = new ArrayList<>();
JSONObject root = new JSONObject(json_string);
JSONArray array= root.getJSONArray("array");
this.setTitle(root.getString("title"));
for(int i=0;i<array.length();i++)
{
JSONObject object= array.getJSONObject(i);
items.add(object.getString("company"));
}
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, items);
if (listView != null) {
listView.setAdapter(adapter);
}
JSONObject nested= root.getJSONObject("nested");
Log.d("TAG","flag value "+nested.getBoolean("flag"));
} catch (JSONException e) {
e.printStackTrace();
}
}
}
We’ve iterated through the JSONArray
object and fetched the strings present in each child JSONObject
and added them to a ArrayList that’s displayed in the ListView. The application name is changed using :
this.setTitle();
The output of the application is given below. You can see the title name changed in the ToolBar at the top. Google has released a Volley Library for JSON Parsing. We’ll implement that in later tutorials. GSON is a Java library that converts Java Objects into JSON and vice versa. This brings an end to android JSONObject tutorial. Our aim was to give a overview of JSON Parsing in android since JSON is the accepted standard these days for transmitting data between servers/web applications. Android JSON parsing will be very handy when we develop applications that send and receive data from the server. You can download the Android JSON Parsing Project from the below link.
Download Android JSON Parsing JSONObject Project
Reference: Official Documentation
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
how to retrive data from database table using JSON parser library
- zig girma
how to parse this type of data::: { “status”: true, “msg”: “Main type found successfully.”, “data”: [ { “id”: 8, “name”: “Music”, “created_at”: “2020-12-11T11:14:12.000000Z”, “updated_at”: “2020-11-07T05:28:30.000000Z”, “images”: [ { “id”: 6, “category_id”: 8, “aws_s3_key”: “category/c9f0f895fb98ab9159f51fd0297e236d/160474961147830.jpg”, “media_url”: “https://ehs-media-development.s3.ap-south-1.amazonaws.com/category/c9f0f895fb98ab9159f51fd0297e236d/160474961147830.jpg”, “created_at”: “2020-11-07T06:16:53.000000Z”, “updated_at”: “2020-11-07T06:16:53.000000Z” } ] }, { “id”: 9, “name”: “Art”, “created_at”: “2020-12-11T11:14:21.000000Z”, “updated_at”: “2020-12-08T05:02:53.000000Z”, “images”: [ { “id”: 7, “category_id”: 9, “aws_s3_key”: “category/c9f0f895fb98ab9159f51fd0297e236d/160474961147830.jpg”, “media_url”: “https://ehs-media-development.s3.ap-south-1.amazonaws.com/teacher\_portfolio\_image/e4da3b7fbbce2345d7772b0674a318d5/160766398952238.jpg”, “created_at”: “2020-12-11T11:16:26.000000Z”, “updated_at”: “2020-11-07T06:16:53.000000Z” } ] } ] }
- Devendra Aparnathi
How to get value for radio Button in json through two value jobseeker & jobprovider plz help me
- Dhara Dadhaniya
json parsing of object or array of only numbers i try to find it everywhere not a single solution as take it as a challenge and pls help me.
- keshav
Hi, can you please tell me how would you parse this JSON in Android Studio" { “Article”:[ { “InvDepartmentId”:“001000000000012”, “InvDepartmentName”:“mens”, “InvCategoryId”:“001000000000023”, “InvCategoryName”:“adult”, “InvSubCategoryId”:“001000000000021”, “InvSubCategoryName”:“abc”, “ArticleId”:“001000000000186”, “ArticleNo”:“test22246”, “ArticleWSP”:1100.00, “CreatedOn”:“2018-09-14T12:51:04”, “LastUpdate”:“2018-09-14T12:51:30.823” } I have written this code until now: StringRequest stringRequest = new StringRequest(Request.Method.GET, url, new Response.Listener() { @Override public void onResponse(String response) { try { JSONObject js = new JSONObject(response); JSONArray jsonArray = js.getJSONArray(Constants.Article); String InvDepartmentId = jsonArray.getString(Integer.parseInt(“InvDepartmentId”)); String InvDepartmentName = jsonArray.getString(Integer.parseInt(“InvDepartmentName”)); String InvCategoryId = jsonArray.getString(Integer.parseInt(“InvCategoryId”)); Help would be highly appreciated.Thanks !
- Akansha Rattan
Simple and to the point, Helpful article.
- basic
I really love ur all tutorials, But sorry to say this1 is not that upto the mark. You could have shown it with how to get json data from url…using HTTPHandler Also asynctask can be used in this. If possible can you update your this tutorial accordingly. (Just a suggestion) Thanks
- khushbu
Woow man…Your teaching style is so cool…I am totally impressed…Carry on… Thank You…
- shihab