日期:2014-05-17 浏览次数:20829 次
private String JSONRequest;
private JSONObject jo = new JSONObject();
    
    public void setJSONRequest(String JSONRequest){
        this.JSONRequest = JSONRequest;
    }
    
    public String getJSONRequest(){
        return JSONRequest;
    }
public String execute(){
        jo=JSONObject.fromObject(JSONRequest);
                jo.get("count");
                return SUCCESS;
}
------解决方案--------------------
spring mvc