当前位置 : 主页 > 编程语言 > java >

fastjson JSONObject遍历

来源:互联网 收集:自由互联 发布时间:2021-06-28
fastjson JSONObject遍历 private static String getDesc(String jsonStr, String key){ JSONObject jsonObject = JSONObject.parseObject(jsonStr); for(Map.Entry entry : jsonObject.entrySet()){ if(key.equals(entry.getKey())){ return entry.getValu
fastjson JSONObject遍历
private static String getDesc(String jsonStr, String key){
        JSONObject jsonObject = JSONObject.parseObject(jsonStr);
        for(Map.Entry
 
   entry : jsonObject.entrySet()){
            if(key.equals(entry.getKey())){
                return entry.getValue().toString();
            }
        }
        return null;
    }
 
网友评论