JSONObject example in Java

前端之家收集整理的这篇文章主要介绍了JSONObject example in Java前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
n the prevIoUs section of JSON tutorials you have seen how JSON can be used with JavaScript to create objects and arrays,you have also studied how to parse and create messages with JSON in JavaScript.

JSONObject example in Java

In the prevIoUs section of JSON tutorials youhave seen how JSON can be used with JavaScript to create objects and arrays,youhave also studied how to parse and create messages with JSON in JavaScript. Nowin this part you will study how to use JSON in Java.

To have functionality of JSON in java you must haveJSON-lib. JSON-lib also requires following "JAR" files:

  1. commons-lang.jar
  2. commons-beanutils.jar
  3. commons-collections.jar
  4. commons-logging.jar
  5. ezmorph.jar
  6. json-lib-2.2.2-jdk15.jar

JSON-lib is a java library for that transforms beans,collections,maps,java arrays and XML to JSON and then forretransforming them back to beans,maps and others.

In this example we are going to use JSONObjectclass for creating an object of JSONObject and then we will print theSEObject value. For using JSONObject class we have to import followingpackage "net.sf.json". To add elements in this object we haveused put() method. Here is the full example code of FirstJSONJava.java isas follows:

FirstJSONJava.java

importnet.sf.json.JSONObject;

publicclassFirstJSONJava
{
publicstaticvoidmain(Stringargs[]){
JSONObjectobject=newJSONObject();
object.put("name","AmitKumar");
object.put("Max.Marks",newInteger(100));
object.put("Min.Marks",newDouble(40));
object.put("scored",newDouble(66.67));
object.put("nickname","Amit");
System.out.println(object);
}
}


To run this example you have to follow these few stepsas follows:

Output:
@H_975_301@

Download Source Code

原文链接:https://www.f2er.com/json/290708.html

猜你在找的Json相关文章