JSON.parseObject的几种用法

我与影子孤独终老i 提交于 2019-11-26 20:26:49

https://blog.csdn.net/a18827547638/article/details/80272099

https://blog.csdn.net/a18827547638/article/details/80777366

import com.alibaba.fastjson.JSONObject;

一.result格式:

{

    "success":"true";

"returnAddress":"123"

}
JSONObject jsonObject=JSON.parseObject(result); //转换成object

jsonObject.getString("returnAddress") //获取object中returnAddress字段;
二.result格式:
{

"success":"true";

    "data":{

        "shop_uid":"123";
    };

}
 

JSONObject shop_user =JSON.parseObject(result);

JSON.parseObject(shop_user .getString("data")).getString("shop_uid")
三.result格式:

{

    "success":"true";

"data":[{

"shop_uid":"123";

},

{

"shop_name":"张三"

}]
}
 

JSONArray detail = JSON.parseArray(result);
for (int i=0; i<detail.size();i++){
if(detail.get(i)!=null||!detail.get(i).equals("")){
JSONArray detailChild =detail.getJSONArray(i);
if(detailChild.getInteger(1)>Integer.valueOf(ship.get("shiptime").toString())){
ship.put("shiptime",detailChild.getInteger(1));
ship.put("desc",detailChild.getString(0));
}
}
}
JSON转javaBean

1.1 JSONobject=>javaBean

JSONObject contentChild = contentsArray.getJSONObject(i);
QCCustomerScore.CustomerCore customerCore = JSON
.toJavaObject(contentChild, QCCustomerScore.CustomerCore.class);
1.2 String转javaBean

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!