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

JSON

时间:2018-08-29 14:32:33      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:turn   封装   api   help   list   ptr   转换   bsp   tap   

 

 

    使用Gson上传集合数据到服务器,1.最外层用 ArrayMap<String, Object> 封装;2.通过  mRequestParam.put("cmdLineIds", cmdLineIds);存入集合数据;3.用GSON.toJson转换成标准Json字符串传到服务器上。

 @Override
 public Flowable<String> uploadCollectionData(String businessType, List<CmdLineId> cmdLineIds) {
     // ArrayMap<String, Object> mRequestParam;
     mRequestParam.clear();
     mRequestParam.put("businessType", businessType);
     mRequestParam.put("cmdLineIds", cmdLineIds);
     Log.v("yff", "up: " + JsonUtil.map2Json(mRequestParam));//  new Gson().toJson(map);
     return mRequestApi.uploadCollectionData(JsonUtil.map2Json(mRequestParam)).compose(TransformerHelper.MapTransformer);
 }

Log:

{
    "cmdLineIds": [
        {
            "cmdLineId": "20180823002001"
        },
        {
            "cmdLineId": "201808280041"
        }
    ],
    "businessType": "E4"
}

 

JSON

标签:turn   封装   api   help   list   ptr   转换   bsp   tap   

原文地址:https://www.cnblogs.com/jooy/p/9552401.html

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