package com.ycl.common.utils.excel.utils; import cn.hutool.core.lang.Dict; import cn.hutool.core.util.ArrayUtil; import cn.hutool.core.util.ObjectUtil; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.exc.MismatchedInputException; import com.ycl.common.utils.spring.SpringUtils; import lombok.AccessLevel; import lombok.NoArgsConstructor; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * JSON 工具类 * * @author 芋道源码 */ @NoArgsConstructor(access = AccessLevel.PRIVATE) public class JsonUtils { private static final ObjectMapper OBJECT_MAPPER = SpringUtils.getBean(ObjectMapper.class); public static ObjectMapper getObjectMapper() { return OBJECT_MAPPER; } /** * 将对象转换为JSON格式的字符串 * * @param object 要转换的对象 * @return JSON格式的字符串,如果对象为null,则返回null * @throws RuntimeException 如果转换过程中发生JSON处理异常,则抛出运行时异常 */ public static String toJsonString(Object object) { if (ObjectUtil.isNull(object)) { return null; } try { return OBJECT_MAPPER.writeValueAsString(object); } catch (JsonProcessingException e) { throw new RuntimeException(e); } } /** * 将JSON格式的字符串转换为指定类型的对象 * * @param text JSON格式的字符串 * @param clazz 要转换的目标对象类型 * @param 目标对象的泛型类型 * @return 转换后的对象,如果字符串为空则返回null * @throws RuntimeException 如果转换过程中发生IO异常,则抛出运行时异常 */ public static T parseObject(String text, Class clazz) { if (StringUtils.isEmpty(text)) { return null; } try { return OBJECT_MAPPER.readValue(text, clazz); } catch (IOException e) { throw new RuntimeException(e); } } /** * 将字节数组转换为指定类型的对象 * * @param bytes 字节数组 * @param clazz 要转换的目标对象类型 * @param 目标对象的泛型类型 * @return 转换后的对象,如果字节数组为空则返回null * @throws RuntimeException 如果转换过程中发生IO异常,则抛出运行时异常 */ public static T parseObject(byte[] bytes, Class clazz) { if (ArrayUtil.isEmpty(bytes)) { return null; } try { return OBJECT_MAPPER.readValue(bytes, clazz); } catch (IOException e) { throw new RuntimeException(e); } } /** * 将JSON格式的字符串转换为指定类型的对象,支持复杂类型 * * @param text JSON格式的字符串 * @param typeReference 指定类型的TypeReference对象 * @param 目标对象的泛型类型 * @return 转换后的对象,如果字符串为空则返回null * @throws RuntimeException 如果转换过程中发生IO异常,则抛出运行时异常 */ public static T parseObject(String text, TypeReference typeReference) { if (StringUtils.isBlank(text)) { return null; } try { return OBJECT_MAPPER.readValue(text, typeReference); } catch (IOException e) { throw new RuntimeException(e); } } /** * 将JSON格式的字符串转换为Dict对象 * * @param text JSON格式的字符串 * @return 转换后的Dict对象,如果字符串为空或者不是JSON格式则返回null * @throws RuntimeException 如果转换过程中发生IO异常,则抛出运行时异常 */ public static Dict parseMap(String text) { if (StringUtils.isBlank(text)) { return null; } try { return OBJECT_MAPPER.readValue(text, OBJECT_MAPPER.getTypeFactory().constructType(Dict.class)); } catch (MismatchedInputException e) { // 类型不匹配说明不是json return null; } catch (IOException e) { throw new RuntimeException(e); } } /** * 将JSON格式的字符串转换为Dict对象的列表 * * @param text JSON格式的字符串 * @return 转换后的Dict对象的列表,如果字符串为空则返回null * @throws RuntimeException 如果转换过程中发生IO异常,则抛出运行时异常 */ public static List parseArrayMap(String text) { if (StringUtils.isBlank(text)) { return null; } try { return OBJECT_MAPPER.readValue(text, OBJECT_MAPPER.getTypeFactory().constructCollectionType(List.class, Dict.class)); } catch (IOException e) { throw new RuntimeException(e); } } /** * 将JSON格式的字符串转换为指定类型对象的列表 * * @param text JSON格式的字符串 * @param clazz 要转换的目标对象类型 * @param 目标对象的泛型类型 * @return 转换后的对象的列表,如果字符串为空则返回空列表 * @throws RuntimeException 如果转换过程中发生IO异常,则抛出运行时异常 */ public static List parseArray(String text, Class clazz) { if (StringUtils.isEmpty(text)) { return new ArrayList<>(); } try { return OBJECT_MAPPER.readValue(text, OBJECT_MAPPER.getTypeFactory().constructCollectionType(List.class, clazz)); } catch (IOException e) { throw new RuntimeException(e); } } }