How to read / write JSON data using java-json.jar with example.
In many projects you may be required to create JSON data or JSON file for data interchange. The same JSON data/ file can be accessed and processed later using jQuery or Javascript or Java, etc.. JSON...
View ArticleWrite JSON in servlet & read using jQuery and JavaScript
In many situations, you may require to generate JSON data in server side so that it can be read and parsed in Client side using jQuery and Javascript just like reading XML data using Ajax / jQuery and...
View ArticleJSONP example to read data from cross domain using Ajax & Servlet
In this tutorial, let us see how to read JSON data from different (cross) domain using AJAX call to servlet. In my earlier JSON tutorial, JSON data was generated in the servlet and the same was read by...
View ArticleCreate bar chart with JSON data using servlet and Highcharts example
In this tutorial, let us see the steps how to create bar chart with JavaScript charts (Highcharts) using JSON data generated using servlet in eclipse. In this example, let us create a chart for gender...
View ArticleSpring 4 RESTful webservice Hello World & JSON response example
In this tutorial, let us see how to create Hello World Restful webservice in Spring 4 in eclipse without using Maven. Spring provides a built-in support for restful service. It is very simple to create...
View ArticleJava JAX-RS RESTful service with XML/JSON response using Application Subclass...
This tutorial tells about how to develop restful web service that returns XML or JSON as response using java JAX-RS API. In this example, let us create a web service (GetEmployeeDetailsService)...
View ArticleHow to convert JSON to Java Object and vice versa using Jackson
In this tutorial, we will see how to convert JSON from/to java object using Jackson. JSON is one of the preferred way of data exchange between applications through webservice. In many applications it...
View ArticleCordova Android Application with Jquery Ajax request example that returns JSON
In this tutorial, let us see the steps to develop cordova android application that makes ajax request to a web service or servlet that returns JSON array data using JQuery. If you are new to cordova...
View Article