Json 从服务器 构建
时间:2014-05-13 04:28:35
收藏:0
阅读:316
public static String createJsonString(String key, Object value) {
JSONObject jsonObject = new JSONObject();
jsonObject.put(key, value);
return jsonObject.toString();
}
评论(0)