More Tutorials| Bioinformatics| Open Source| Photoshop| Questions?
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

JSON and Servlet example

                         

In the previous section of JSON-Java example you have learned how to create a java class by using JSON classes. Now in this example we will tell you how to use JSON classes for creating Servlet.

In this example we have created  an object of JSONArray and then we have added elements into this array by using the method add(). To have functionality of JSON in your application you must have JSON-lib and its supported jar files. These are: commons-lang.jar, commons-beanutils.jar, commons-collections.jar, commons-logging.jar, ezmorph.jar and json-lib-2.2.2-jdk15.jar

Here is the example code of JSONServlet.java as follows:

JSONServlet.java  

import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import net.sf.json.JSONArray;

public class JSONServlet extends  HttpServlet{
  public void doGet(HttpServletRequest request,HttpServletResponse response)
   throws ServletException,IOException{
   JSONArray arrayObj=new JSONArray();
   arrayObj.add("MCA");
   arrayObj.add("Amit Kumar");
   arrayObj.add("19-12-1986");
   arrayObj.add(24);
   arrayObj.add("Scored");
   arrayObj.add(new Double(66.67));
    PrintWriter out = response.getWriter();
    out.println(arrayObj);
    for(int i=0;i<arrayObj.size();i++){
      out.println(arrayObj.getString(i));
    }
  }
}

We have to do corresponding servlet mapping into web.xml as given below:

<?xml version="1.0" encoding="ISO-8859-1"?>

<web-app xmlns="http://java.sun.com/xml/ns/javaee"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
   http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
   version="2.5"
   <servlet>
      <servlet-name>JSONServlet</servlet-name>
      <servlet-class>JSONServlet</servlet-class>
    </servlet>
  <servlet-mapping>
        <servlet-name>JSONServlet</servlet-name>
        <url-pattern>/JSONServlet</url-pattern>
   </servlet-mapping>
</web-app>

To run this example follow this step by step procedure:

  • create a JSONServlet.java class
  • compile JSONServlet and place it into WEB-INF/classes directory
  • Download JSONLibraries and place it into Tomcat's lib directory
  • Start Tomcat Webserver and type
    http://localhost:8080/JSON/JSONServlet  into browser's address bar you will have following output on your browser.

Output:


Download JSON-Servlet Project code

 

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 

Current Comments

1 comments so far (
post your own) View All Comments Latest 10 Comments:

Some body can please help me out as to how to use json to fetch data from database in jsp..

Posted by Nikhil on Sunday, 11.30.08 @ 21:54pm | #82201

Join and Excel yourself with our Online instructor led training sessions
Training Courses
Tell A Friend
Your Friend Name

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.