All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.zcltd.http.response.JsonHttpResponseResult Maven / Gradle / Ivy

There is a newer version: 4.0.10
Show newest version
package cn.zcltd.http.response;

import com.alibaba.fastjson.JSONObject;

/**
 * http请求返回结果
 */
public class JsonHttpResponseResult extends StringHttpResponseResult {
    private JSONObject responseJson;

    public JsonHttpResponseResult(StringHttpResponseResult stringHttpResponseResult) {
        super(stringHttpResponseResult);
        this.responseJson = JSONObject.parseObject(stringHttpResponseResult.getResponseStr());
    }

    public JSONObject getResponseJson() {
        return responseJson;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy