You are on page 1of 3

1/12/2016 Parse json in java example | Tutorialspoint examples

Tutorialspoint examples
(http://tutorialspointexamples.com)
Learn java tutorial with examples for beginners online

Search

How To Parse Json In Java With Example?
Let us discuss how to parse JSON objects using Java with the help of below example.

Steps:
1. Include JSON jar in classpath.
2. Define JSON string.
3. Create JSON parser object
4. Parse JSON string using JSON parser.
5. Process the object.

Example:
JSONTest.java

http://tutorialspointexamples.com/parse­json­in­java/ 1/6
1/12/2016 Parse json in java example | Tutorialspoint examples

package com.javawithease.business; 
  
import org.json.simple.JSONArray; 
import org.json.simple.JSONObject; 
import org.json.simple.parser.JSONParser; 
import org.json.simple.parser.ParseException; 
  
/** 
 * This class is used to parse the JSON string. 
 * @author javawithease 
 */ 
public class JSONTest { 
    public static void main(String args[]) { 
    // JSON String 
    String jsonString = "[{\"name\":\"Swati\",\"rollNo\":" + 
    "\"MCA/07/01\",\"id\":10},{\"name\":\"Prabhjot\",\"" + 
    "rollNo\":\"MCA/07/39\",\"id\":50}]"; 
  
    // Create JSON parser object. 
    JSONParser parser = new JSONParser(); 
    try { 
    // Parse JSON string using JSON parser. 
    Object object = parser.parse(jsonString); 
    JSONArray array = (JSONArray) object; 
    System.out.println("First object:"); 
    System.out.println(array.get(0)); 
  
    // Get JSON object from JSON array. 
    JSONObject jsonObject = (JSONObject) array.get(1); 
    System.out.println("Second object:"); 
    System.out.println("Name:" + jsonObject.get("name")); 
    } catch (ParseException e) { 
    e.printStackTrace(); 
    } 
    } 
}

Output:
First object: 
{"id":10,"rollNo":"MCA\/07\/01","name":"Swati"}
Second object: 
Name:Prabhjot

Download this example. (http://tutorialspointexamples.com/wp­
content/uploads/2015/06/JSONExample2.rar)
 
Previous Topic: How to use JSON object in java? (http://tutorialspointexamples.com/how­to­use­
json­object­in­java/)

Related Topics:
How to build java project using ant in eclipse? (http://tutorialspointexamples.com/how­to­build­java­

http://tutorialspointexamples.com/parse­json­in­java/ 2/6
1/12/2016 Parse json in java example | Tutorialspoint examples

project­using­ant­in­eclipse/)
JAXB marshalling – convert java object to xml example. (http://tutorialspointexamples.com/jaxb­
marshalling­convert­java­object­to­xml­example­using­one­pojo/)

How to create pdf file in java using iText jar? (http://tutorialspointexamples.com/how­to­create­pdf­file­
in­java­using­itext­jar/)
Generics class example. (http://tutorialspointexamples.com/generics­class­example/)
OGNL in struts 2. (http://tutorialspointexamples.com/ognl­in­struts­2/)
Hibernate One­to­One Mapping using xml. (http://tutorialspointexamples.com/hibernate­one­to­one­
mapping­using­xml/)
Send inline image in email using JavaMail API. (http://tutorialspointexamples.com/send­inline­image­
in­email­using­javamail­api/)
Quartz 2 JobListener example. (http://tutorialspointexamples.com/quartz­2­joblistener­example/)
 

  252    0   Share 2   Share 0    0   Share 0  


  0    0   Share 42    141

JSON Tutorial

JSON overview. (http://tutorialspointexamples.com/json­overview/) 
JSON format and data types (http://tutorialspointexamples.com/json­format­and­data­types/) 
JSON object from string. (http://tutorialspointexamples.com/how­to­create­json­object­from­string­in­
javascript/) 
Access json object array. (http://tutorialspointexamples.com/how­to­access­json­object­array­in­
javascript/) 
JSON object in java. (http://tutorialspointexamples.com/how­to­use­json­object­in­java/) 
Parse json in java. (http://tutorialspointexamples.com/how­to­parse­json­in­java­with­example/) 
Download JSON jar. (http://tutorialspointexamples.com/wp­content/uploads/2015/06/JSONLib.rar)

http://tutorialspointexamples.com/parse­json­in­java/ 3/6

You might also like