码迷,mamicode.com
首页 > Web开发 > 详细

Json对象应用

时间:2017-09-27 18:50:44      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:创建   send   org   throws   jar包   []   on()   static   user   

一、json的拼装:

引包:org.json.jar

创建JSONObject对象

调用JSONObject对象的put方法进行json数据的拼装

如果想要拼装json数组,则需要创建一个JSONArray对象:

  1. public class SendJSON {  
  2. public static void main(String[] args) throws JSONException {  
  3. // TODO Auto-generated method stub  
  4. //创建JSON对象  
  5.         JSONObject jsonObject = new JSONObject();  
  6. //创建用户实名信息JSON对象  
  7.         JSONObject jsonObjectUserIDInfo = new JSONObject();  
  8. //json数组  
  9.         JSONArray jsonArray = new JSONArray();  
  10. //组装json数组  
  11.         jsonObjectUserIDInfo.put("name", "zhangSan");  
  12.         jsonObjectUserIDInfo.put("idtype", "身份证");  
  13.         jsonObjectUserIDInfo.put("idnum", "11111");  
  14.         jsonArray.put(jsonObjectUserIDInfo);  
  15.         jsonObject.put("userIDInfo", jsonArray);  
  16.         jsonObject.put("sex", "男");  
  17.         System.out.println(jsonObject);  
  18.         ReceiveJson json = new ReceiveJson();  
  19. //json.test(jsonObject);  
  20.     }  
  21. }  

这样便是创建了含有json对象、json数组的json串。

 

 

二、json的解析:

通常,我们在编写前端向后台传值或者是编写测试类的时候,会事先写好一个json对象进行传递,那么我们的后台接收到这个json对象后,想要从中取出具体的值,那该怎么做?请看案例:

1、工欲善其事,必先利其器。要完成解析工作,我们首先要准备好需要的jar包:org.json.jar即可。将jar包加载进工程后,我们便可根据自己的需要进行json解析了。

2、假设有如下json对象:

{"userIDInfo":{"name":"zhangsSan","idtype":"IDCard","idnum":"3602001"},

"age":23,

"sex":"man"}

3、后台接收这个json对象开始解析

 

 
  1. public  String identityRecognition(  
  2.            JSONObject jsonObject) {  
  3.       //解析出用户实名信息的值  
  4.       JSONObject userInfo = (JSONObject) jsonObject.get("userIDInfo");  
  5.       String name = userInfo.get("name").toString();  
  6. tring name = jsonObject.get("age").toString();  

 

 

在这里我们是怎么解析的?答案很简单,就是利用你接受到的jsonObject的get方法即可。这是解析json对象的方法。

如果说是一个json数组呢?该如何解析?

有一个json数组:{"sex":"男","userIDInfo":[{"idtype":"身份证","name":"zhangSan","idnum":"11111"}]}

后台解析代码:

 

 
  1. public  class ReceiveJson {  
  2.     public void test(JSONObject jsonObject) throws JSONException{  
  3.         JSONArray jsonarray = (JSONArray)jsonObject.get("userIDInfo");  
  4.         System.out.println(jsonarray.get(0));  
  5.         JSONObject jsontestJsonObject = (JSONObject)jsonarray.get(0);  
  6.         System.out.println(jsontestJsonObject.get("name"));  
  7.           
  8.     }  
  9. }  

 

另外补充一个小知识点,这个在实际编程中还是挺有用处的,就是Java字符串转成json对象

 

JSONObject jsonObject = new JSONObject(jsonString);      

这个jsonString就是一个字符串形式的json,只要放在JSONObject的构造方法中,就可以得到一个json对象了,直接System.out.println(jsonObject)就可以得到了。   

Json对象应用

标签:创建   send   org   throws   jar包   []   on()   static   user   

原文地址:http://www.cnblogs.com/cmkblog/p/7603007.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!