首页 > 代码库 > Json 从服务器 构建

Json 从服务器 构建

public static String createJsonString(String key, Object value) {
    JSONObject jsonObject = new JSONObject();
    jsonObject.put(key, value);
    return jsonObject.toString();
}