Json 从服务器 构建
2020-12-13 03:05
阅读:634
标签:json Json 从服务器 构建,搜素材,soscw.com Json 从服务器 构建 标签:json 原文地址:http://just2012.blog.51cto.com/7435167/1409853public static String createJsonString(String key, Object value) {
JSONObject jsonObject = new JSONObject();
jsonObject.put(key, value);
return jsonObject.toString();
}
评论
亲,登录后才可以留言!