• Jackson


    Jackson

    工具方法

    import com.alibaba.fastjson.JSONArray;
    import com.alibaba.fastjson.JSONObject;
    import com.fasterxml.jackson.databind.JavaType;
    import com.fasterxml.jackson.databind.ObjectMapper;
    import com.fasterxml.jackson.databind.type.CollectionType;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Maps;
    import org.apache.commons.lang.StringEscapeUtils;
    import org.apache.commons.lang3.StringUtils;
    import java.io.IOException;
    import java.text.DateFormat;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.*;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.function.Function;
    import java.util.function.Predicate;
    import java.util.stream.Collectors;
    import static com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES;
    
        public static <T> T jsonToObject(String json, Class<T> classType) throws IOException {
            if (StringUtils.isBlank(json)) {
                return null;
            }
            ObjectMapper objectMapper = new ObjectMapper();
            objectMapper.configure(FAIL_ON_UNKNOWN_PROPERTIES, false);
            return objectMapper.readValue(json, classType);
        }
    
        /**
         * json转Map
         *
         * @param json      json字符串
         * @param classType 数组中元素类型.Class
         * @return Map
         */
        public static <T> Map<String, Object> jsonToMap(String json, Class<T> classType) throws IOException {
            if (StringUtils.isBlank(json)) {
                return null;
            }
            ObjectMapper objectMapper = new ObjectMapper();
            //未知属性不序列化不报错
            objectMapper.configure(FAIL_ON_UNKNOWN_PROPERTIES, false);
            Map<String, Object> map = Maps.newHashMap();
            JavaType javaType = objectMapper.getTypeFactory().constructParametricType(HashMap.class, String.class, classType);
            return objectMapper.readValue(json, javaType);
    
        }
    
        /**
         * json转List数组
         *
         * @param json      json字符串
         * @param classType 数组中元素类型.Class
         * @param        参数类型
         * @return List
         */
        public static <T> List<T> jsonToList(String json, Class<T> classType) throws IOException {
            if (StringUtils.isBlank(json)) {
                return null;
            }
            ObjectMapper objectMapper = new ObjectMapper();
            //未知属性反序列化不报错
            objectMapper.configure(FAIL_ON_UNKNOWN_PROPERTIES, false);
    
            List<T> list = Lists.newArrayList();
            CollectionType listType = objectMapper.getTypeFactory().constructCollectionType(ArrayList.class, classType);
            return objectMapper.readValue(json, listType);
        }
    
        public static String objectToJson(Object o) throws IOException {
            ObjectMapper objectMapper = new ObjectMapper();
            return objectMapper.writeValueAsString(o);
        }
            /**
         * 反转义 , 去除多余字符
         * @param text  字符串
         * @return
         */
        public static String unescapeString(String text){
            if (StringUtils.isBlank(text)){
                return "";
            }
            text = StringEscapeUtils.unescapeJavaScript(text);
    
            if (text.startsWith("\"")){
                text = text.substring(1);
            }
            if (text.endsWith("\"")){
                text = text.substring(0,text.length()-1);
            }
            text = text.replace("\\\\","");
            return text;
        }
    
    • 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
  • 相关阅读:
    R语言时间序列数据的平滑:使用KernSmooth包的dpill函数和locpoly函数对时间序列数据进行平滑以消除噪声
    MapReduce程序设计2
    81-Java的不可变集合、Stream流体系
    latex安装与使用
    dht11温湿度传感器工作原理引脚功能电路接线图
    她从家乡自贡起步,努力奋斗进京任职
    蓝奥声核心技术分享——无线同步群控技术
    基于51单片机的波形发生器proteus仿真数码管LCD12864显示
    物联网如何变革包装行业
    SpringBoot 官方文档示例:(54)统一异常处理之@ControllerAdvice注解
  • 原文地址:https://blog.csdn.net/qq_40605018/article/details/126382897