阿里巴巴json fastjson String转javaBean

private Entity getEntity(String resp){
        JSONObject jsonObj = (JSONObject) JSON.parse(resp);
        if (jsonObj.getJSONArray("data") != null) {
            jsonObj = jsonObj.getJSONArray("data").getJSONObject(0);
        }
        jsonObj.remove("******");
        Entity entity= JSONObject.toJavaObject(jsonObj,Entity.class);
        return entity;
    }

转好了。

上一篇:BSA Network Shell系列-nexec | runcmd | runscript | scriptutil的异同


下一篇:老大写得一个非常高大上的Makefile,包括非常多语法: