当前位置:   article > 正文

通过Json数据的路径和数据类型获取到json中的值demo_objjson = testjson2("[{""a000"":""a004""}]")

objjson = testjson2("[{""a000"":""a004""}]")

通过Json数据的路径和数据类型获取到json中的值demo

package com.example.demo.testjson2;

import com.alibaba.fastjson.JSONObject;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;

import java.util.Iterator;
import java.util.List;
import java.util.Map;

/**
 * @author LiaoLiChao
 * @date 2023/1/9 17:07
 */
@Slf4j
public class JsonToolsFastJson {

    // 用于记录递归的次数
    private int i = 0;

    /**
     * 复杂嵌套JSON获取Object数据
     */
    public Object getObjectByJson(String jsonStr, String argsPath, com.example.demo.testjson.JsonToolsFastJson.TypeEnum argsType) {
        if (StringUtils.isBlank(argsPath) || argsType == null) {
            log.info("必填参数argsPath或argsType不能为空");
            return null;
        }

        Object obj = null;
        try {
            Map maps = JSONObject.parseObject(jsonStr);
            //多层获取
            if (argsPath.contains(".")) {
                obj = getObject(maps, argsPath, argsType);
            } else {
                //直接获取
                if (argsType == com.example.demo.testjson.JsonToolsFastJson.TypeEnum.STRING) {
                    obj = JSONObject.parseObject(jsonStr).get(argsPath);
                } else if (argsType == com.example.demo.testjson.JsonToolsFastJson.TypeEnum.MAP) {
                    obj = (Map) JSONObject.parseObject(jsonStr).get(argsPath);
                } else if (argsType == com.example.demo.testjson.JsonToolsFastJson.TypeEnum.LIST) {
                    obj = (List) JSONObject.parseObject(jsonStr).get(argsPath);
                }
            }
        } catch (Exception e) {
            log.error(e.getMessage());
        }
        return obj;
    }

    // 递归获取object
    private Object getObject(Object m, String key, com.example.demo.testjson.JsonToolsFastJson.TypeEnum type) {
        if (m == null) {
            System.out.println("over...");
            return null;
        }
        // 返回的对象
        Object o = null;

        Map mp = null;
        List ls = null;
        try {
            // 第二层只会出现{}或[]
            //{}对象层级递归遍历解析
            if (m instanceof Map) {
                mp = (Map) m;
                for (Iterator ite = mp.entrySet().iterator(); ite.hasNext(); ) {
                    Map.Entry e = (Map.Entry) ite.next();

                    //  e  : json中的key-value
                    // key : 传入的path
                    if (i < key.split("\\.").length && e.getKey().equals(key.split("\\.")[i])) {
                        i++;
                        if (e.getValue() instanceof String) {
                            //递归最后一次
                            if (i == key.split("\\.").length) {
                                o = e.getValue();
                                i = 0;
                                return o;
                            }
                        } else if (e.getValue() instanceof Map) {
                            //递归最后一次
                            if (i == key.split("\\.").length) {
                                if (type == com.example.demo.testjson.JsonToolsFastJson.TypeEnum.MAP) {
                                    o = (Map) e.getValue();
                                    i = 0;
                                    return o;
                                }
                            } else {
                                o = getObject((Map) e.getValue(), key, type);
                            }
                            return o;
                        } else if (e.getValue() instanceof List) {
                            //递归最后一次
                            if (i == key.split("\\.").length) {
                                if (type == com.example.demo.testjson.JsonToolsFastJson.TypeEnum.LIST) {
                                    o = (List) e.getValue();
                                    i = 0;
                                    return o;
                                }
                            } else {
                                o = getObject((List) e.getValue(), key, type);
                            }
                            return o;
                        }
                    }
                }
            }
            //[]数组层级递归遍历解析
            // 获取[]数据时,只能直接获取所有[]数据
            if (m instanceof List) {
                ls = (List) m;
                for (int i = 0; i < ls.size(); i++) {
                    if (ls.get(i) instanceof Map) {
                        //递归最后一次
                        if (i == key.split("\\.").length) {
                            if (type == com.example.demo.testjson.JsonToolsFastJson.TypeEnum.MAP) {
                                o = (Map) ls.get(i);
                                return o;
                            }
                        } else {
                            o = getObject((Map) ls.get(i), key, type);
                        }
                        return o;
                    } else if (ls.get(i) instanceof List) {
                        //递归最后一次
                        if (i == key.split("\\.").length) {
                            if (type == com.example.demo.testjson.JsonToolsFastJson.TypeEnum.LIST) {
                                o = (List) ls.get(i);
                                return o;
                            }

                        } else {
                            o = getObject((List) ls.get(i), key, type);
                        }
                        return o;
                    }
                }
            }
        } catch (Exception e) {
            log.error(e.getMessage());
        }
        return o;
    }

    /**
     * JSON数据解析返回数据类型枚举,我将value归为3类
     */
    public enum TypeEnum {
        STRING,
        MAP,
        LIST;
    }
    private static String jsonStr = "{\"_id\":\"5973782bdb9a930533b05cb2\",\"isActive\":true,\"balance\":\"$1,446.35\",\"age\":32,\"eyeColor\":\"green\",\"name\":\"Logan Keller\",\"gender\":\"male\",\"company\":\"ARTIQ\",\"email\":\"logankeller@artiq.com\",\"phone\":\"+1 (952) 533-2258\",\"friends\":[{\"id\":0,\"name\":\"Colon Salazar\"},{\"id\":1,\"name\":\"French Mcneil\"},{\"id\":2,\"name\":\"Carol Martin\"}],\"mobian\":[{\"id\":0,\"name\":\"Colon Salazar\",\"arr\":[{\"id\":0,\"name\":\"Colon Salazar\"}]}],\"favoriteFruit\":\"banana\"}";

    public static void main(String[] args) {
        //测试通过json获取Object对象
        com.example.demo.testjson.JsonToolsFastJson jsonTools = new com.example.demo.testjson.JsonToolsFastJson();
        Object str1 = jsonTools.getObjectByJson(jsonStr, "name", com.example.demo.testjson.JsonToolsFastJson.TypeEnum.STRING);
        log.info("str1:" + str1);

        Object str3 = jsonTools.getObjectByJson(jsonStr, "friends", com.example.demo.testjson.JsonToolsFastJson.TypeEnum.LIST);
        log.info("str3:" + str3);

        Object str4 = jsonTools.getObjectByJson(jsonStr, "mobian.arr", com.example.demo.testjson.JsonToolsFastJson.TypeEnum.LIST);
        log.info("str4:" + str4);
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170

测试结果:
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/977872
推荐阅读
相关标签
  

闽ICP备14008679号