标签:json
public static String createJsonString(String key, Object value) { JSONObject jsonObject = new JSONObject(); jsonObject.put(key, value); return jsonObject.toString(); }
Json 从服务器 构建,布布扣,bubuko.com
Json 从服务器 构建
原文地址:http://just2012.blog.51cto.com/7435167/1409853