javascript
java jsonobject.parse_JSON.parseObject的几种用法
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
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
原文:https://www.cnblogs.com/dianzan/p/11332672.html
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的java jsonobject.parse_JSON.parseObject的几种用法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 时间戳 java_java中获取时间戳的
- 下一篇: 插件properties_Mybatis