欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

【Android】快速构建json数据-运用JsonObject和泛型实现

时间:2023-07-02
具体实现类

import org.json.JSONArray;import org.json.JSONException;import org.json.JSONObject;import java.util.List;public class JsonBuilder { private JSONObject jsonObject = new JSONObject(); public JsonBuilder addParams(String key, T value) { try { if(!(value instanceof List)){ jsonObject.put(key, value); }else { JSONArray jsonArray = new JSONArray(); List tempList = (List) value; for(Object object : tempList){ jsonArray.put(object); } jsonObject.put(key,jsonArray); } } catch (JSONException e) { e.printStackTrace(); } return this; } public String build() { return jsonObject.toString(); }}

实际用法

String reqJson = new JsonBuilder() .addParams("uid", uid) .addParams("room_id", KTVRoomManager.getInstance().getRoomInfo().getRoomId()) .addParams("target_uid", targetUid) .addParams("target_nick_name", targetNickName) .addParams("song_create_time", songCreateTime) .addParams("song_id", songId) .addParams("type", 5) .build();

这样就可以获取一段json数据跟后台交互。

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。