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 <T>       参数类型
     * @return List<T>
     */
    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
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值