当前位置:   article > 正文

java实现json文件的读取和解析

java实现json文件的读取和解析
	<dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.37</version>
     	</dependency>





import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import lombok.Data;
import org.apache.commons.io.FileUtils;
import org.springframework.core.io.ClassPathResource;
import org.springframework.util.CollectionUtils;
import org.springframework.util.StringUtils;

import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.stream.Collectors;

public class MainApplication {

    public static Map<String, List<KeyValue>> map = new ConcurrentHashMap<>(28);


    public static void main(String[] args) throws IOException {

        String value = getValueForKeyAndId("channel", 1);
        System.out.println(value);
        List<String> strings = getValuesForKey("channel");
        System.out.println(strings);

    }


    /**
     * 通过key 获取所有value值
     * @param key
     * @return
     * @throws IOException
     */
    public static List<String> getValuesForKey(String key) throws IOException {
        List<KeyValue> list = getKeyValues(key);
        if (CollectionUtils.isEmpty(list)) {return null;}
        List<String> valueStrings = list.stream().map(s -> s.getValue()).collect(Collectors.toList());
        return valueStrings;

    }

    /**
     * 通过key和id获取value值
     * @return
     */
    public static String getValueForKeyAndId(String key,Integer id) throws IOException {
        List<KeyValue> list = getKeyValues(key);

        if (CollectionUtils.isEmpty(list)) {return null;}

        for (KeyValue keyValue : list) {
            if (keyValue.getId() == id) {
                return keyValue.getValue();
            }
        }
        return null;

    }





    public static List<KeyValue> getKeyValues(String key) throws IOException {
        if (StringUtils.isEmpty(key)){return null;}

        if (CollectionUtils.isEmpty(map)) {
            readJsonData();
        }
        List<KeyValue> list = map.get(key);
        return list;
    }

    /**
     * 读取文件数据加入到map缓存中
     * @throws IOException
     */
    public static void readJsonData() throws IOException {
        ClassPathResource resource = new ClassPathResource("adConfig.json");
        File file = resource.getFile();
        String jsonString = FileUtils.readFileToString(file);


        JSONObject jsonObject = JSONObject.parseObject(jsonString);

        Set<String> keySet = jsonObject.keySet();
        for (String s : keySet) {

            String stringArray = jsonObject.getJSONArray(s).toJSONString();
            List<KeyValue> keyValues = JSONArray.parseArray(stringArray, KeyValue.class);
            map.put(s, keyValues);
        }
    }


    @Data
    static class KeyValue{
        private int id;
        private String value;
    }

}


  • 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

在这里插入图片描述

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

闽ICP备14008679号