JSON is being widely adapted by the industry for easier transformation of data. Using the json-simple-1.1.1.jar in the classpath will provide you with the basics of JSON and its functionality.
Creating a JSON object is illustrated below.
import org.json.simple.JSONObject;class UsingJson { public static void main(String args[]) { JSONObject jsonObject = new JSONObject(); jsonObject.put("id", 10051); jsonObject.put("name", "Sridhar"); System.out.print("JSONObject : " + jsonObject); }}/*Expected output:[[email protected]]# java UsingJsonJSONObject : {"name":"Sridhar","id":10051}*/